Answer:
The answer to this question is option "d".
Explanation:
In this question option d (A user fills out a form to construct a description of the data desired in a SQL search) is not true. Because SQL stands for Structured Query Language. This is a query language used to communicate with a database and a user fills the form. Which is not possible in the SQL. So the option d is not true.
 
        
             
        
        
        
Computer Communication Software
I hope this helps! :)
        
             
        
        
        
Answer:
Explanation:
The following is written in Python and uses exception handling to do exactly as requested. It then goes adding all of the integer values to an array called num_list and finally adding them all together when the function ends.
def in_values():
    num_list = []
    while True:
        try:
            num = input("Input non-zero floating point: ")
            num = int(num)
            if num == 0:
                break
            else:
                num_list.append(num)
        except ValueError:
            print("No valid integer! Please try again ...")
            try:
                num = input("Input non-zero floating point: ")
                num = int(num)
                break
            except ValueError:
                break
    sum = 0
    for number in num_list:
        sum += number
    return sum