Which instruction is used to step through each element of an array?

a. Do together
b. For all in order
c. For all together
d. loop
e. None of these


d. loop

Computer Science & Information Technology

You might also like to view...

When creating a parameter query, you are limited to a single parameter in the Criteria row for a given field

Indicate whether the statement is true or false

Computer Science & Information Technology

What is wrong with this code?

``` int Money4Me( int dollars ) { int pennies, coins; coins = dollars * 100; }``` A. The function name is invalid. B. There is no return type. C. You can’t have math statements inside a function. D. Nothing is wrong with it.

Computer Science & Information Technology