The first step in a while loop is typically to ____.
A. compare the loop control variable to a constant value
B. initialize the loop control variable
C. increment the loop control variable
D. execute the body of the loop
Answer: B
You might also like to view...
Which of the following statements is TRUE about queries in Access?
A) Access queries can be created in Design view, Layout view or SQL view. B) Access queries must be created and modified in SQL view. C) Access queries can be created and modified in Design view. D) Access queries can be created in Design view and then modified in SQL view.
What is not a common format for a number control?
A) Currency B) Percent C) Accounting D) Comma
After you have added a Button onto a form, what can you do in order to create a method that executes when the user clicks the Button?
A. You can select the Button, then create the method. B. You can double-click the Button, and then create the method. C. You can single click the Button, and then create the method. D. You must delete the Button, and create the method first, then call the Button object by name.
A mistake programmers often make with loops is that they ____.
A. neglect to initialize the loop control variable prior to entering the loop body B. increment the loop control variable inside of the loop body C. validate data to ensure values are the correct data type or that they fall within an acceptable range D. enclose the inner loop entirely within the outer loop in a nested loop