Explanation:
ICT permeates all aspects of life, providing newer, better, and quicker ways for people to interact, network, seek help, gain access to information, and learn. Besides its presence everywhere, Information and Communication Technology has an immense economic significance.
Answer:
Following are the code to this question:
list_val = input()#defining a integer variable for input value
test_grades = list(map(int, list_val.split()))#defining test_grades as a list
sum_extra = -999 #defining sum_extra that holds negative integer value
sum_extra = 0#defining sum_extra that holds value
for y in range(len(test_grades)):#defining a for loop to check range of list
if(test_grades[y] > 100):# defining if block that check list value is greater then 100
sum_extra = sum_extra + (test_grades[y] - 100)#use sum_extra variable to hold extra value and add this value
print('Sum extra:', sum_extra)#print value
Output:
101 83 107 90
Sum extra: 8
Explanation:
In the above code a, "list_val" variable is declared, that uses an input method to input the values and declared a "test_grades" variable that uses a list method to add all values in the list.
In the next step, the "sum_extra" variable is declared, which holds some values and defines a for loop to check the range of the "test_grades", and define a if block, that checks list value is greater than 100. If the condition is true, it will remove the extra value, and add it into the sum_extera variable and add its value, and at the last use, print variable to print its value.
Answer:
The PHP code is as follows
<?php
for ($i = 10; $i>1; $i--)
{
echo $i.' ';
}
?>
Explanation:
The code is self explanatory and doesn't require comments before it can easily understood.
The program starts with a php opening tag <?php
And it ends with the closing tag ?>
The interpretation of the question is to print integer values from 10 to 1
To do this, an iteration is needed.
The above program makes use of a for loop iteration.
Analysis;
for ( -> This shows that it is a for loop iteration
$i = 10; -> Iterating variable $i is initialized to 10 (that is; printing will start at 10)
$i>1; -> Iteration is valid while $i is greater than 1 (e.g. 2,3,4...10)
$i-- -> For every Iteration, decrease $i by 1
) -> End of Iterating condition
echo $i.' '; -> This line prints the valid values of $i. In this case, the values of $i is from 10 and stops at 2
The output is as follows
10 9 8 7 6 5 4 3 2
Because the string is invalid or your source is not attached to your search engine.
a companys Market share is the percentage of the total target market for the product that belongs to the company