1 |
A _____ contains an object that stores VBA code |
- A. Macro
- B. Module
- C. Forms
- D. Reports
|
2 |
Which statement is used to move the control to the start of loop body? |
- A. Continue
- B. Break
- C. Switch
- D. Goto
|
3 |
The loop structure that executes at least ones is |
- A. While
- B. Do-while
- C. For
- D. All
|
4 |
When is for loop more appropriate then while loop? |
- A. The termination condition is known in advance
- B. The number of iterations is not known in advance
- C. The loop should be executed only once
- D. The loop should be executed at least once
|
5 |
Each record consists of a |
- A. Rows
- B. Columns
- C. Both a and b
- D. None of these
|
6 |
The body of while loop with multiple statements ends with: |
- A. Right bracket ]
- B. Right brace }
- C. Comma ,
- D. Semi colon ;
|
7 |
When is while loop more appropriate then for loop? |
- A. The terminating condition occurs unexpectedly
- B. The body of loop will be executed at least once
- C. The program will be executed at least once
- D. The number times the loop will be executed is known before the loop executes
|
8 |
The keyword used to come out of the body of loop is |
- A. Exit
- B. Continue
- C. Break
- D. Ebd
|
9 |
If we want a user to enter exactly 20 values, which loop would be the best to use? |
- A. While
- B. Do-while
- C. For
- D. Infinite
|
10 |
______ are used to move around the window if its contents do not fit on screen |
- A. menu bar
- B. Tool bar
- C. Scroll bar
- D. Status bar
|