Whitespace
--------------------------------------------
Answer:
CGI stands for common gateway interface. It is used in transferred information between world wide to the CGI program. As CGI program is the programming language which can be written in java , C and perl. It is a web server dynamically used with users. CGI is a standard used to create web pages by web servers.
Answer:
The program in Python is as follows:
total = 0
count = 0
for i in range(8):
num = float(input())
if num < 10.5:
total+=num
count+=1
print("Average: ",total/count)
Explanation:
This initializes the total to 0
total = 0
This initializes the count to 0
count = 0
This loop is executed 8 times
for i in range(8):
This request for float number
num = float(input())
If input is less than 10.5
if num < 10.5:
The sum is taken
total+=num
And count is incremented by 1
count+=1
The loop ends here
This calculates and prints the average
print("Average: ",total/count)
Answer:
The moment work is produced, written, or developed.
Explanation:
Your work is under copyright protection the moment it is created and fixed in a tangible form that it is perceptible either directly or with the aid of a machine or device.