True/False
16. True/False: Arrays are used in input, processing, and output operations.
17. True/False: Arrays save space because all elements of an array are stored in a single
memory location while a list of variables needs a separate location for each variable.
18. True/False: The following statement: Declare Array1[23] allocates storage space for 22
elements.
19. True/False: The following statement: Declare ArrayX[5,5] allocates storage space for
25 elements.
20. True/False: The third element of an array named Dogs is identified by Dogs[3].
21. True/False: It is not possible to put a loop inside an If-Then statement.
22. True/False: If Number = 2.3, is the following statement true or false:
Number == Int(Number)
23. True/False: A counter in a loop can count up by fives.
24. True/False: Is the following statement true or false?
Ceiling(6.89) = 6
25. True/False: In a program with nested loops, the inner loop is completed before the outer
loop.
26. True/False: If the following statement is the first line of a For loop, on the first pass
through the loop, X will have the value of 2.
For (X = 1; X \le 10; X+2)