Repetition Structure- Multiple Choice Questions

Que.Programmers use __________ known as loops.
a. Repetition structure
b. Conditional structure
c. Goto
d. Unconditional structure
Que.The requirement for repeating the instructions is referred to as the __________
a. Looping condition
b. Conditional statement
c. Iterative statement
d. Initialization statement
Que.The requirement for not repeating the instructions is referred to as the __________
a. Loop exit condition
b. Looping condition
c. Conditional statement
d. Iterative statement
Que.In a __________ loop the condition is evaluated before the instructions within the loop are processed.
a. Posttest
b. Pretest
c. Conditional loop
d. Unconditional loop
Que.The __________ is used to code both pretest and posttest loops.
a. Do loop statement
b. For loop statement
c. While loop statement
d. If statement
Que.The __________ in a Do…Loop statement can contain variables, methods, constants, properties and operators.
a. Exit statement
b. Condition
c. Statement
d. Iteration statement
Que.The instructions in a __________ loop are always processed at least once, whereas the instructions in a __________ loop might not be processed at all.
a. Posttest, pretest
b. Pretest, posttest
c. Pretest, pretest
d. Posttest, posttest
Que.______________ is a numeric variable used for counting something.
a. Accumulator
b. Counter
c. Positive
d. Negative
Que.______________ is a numeric variable used for accumulating something.
a. Accumulator
b. Counter
c. Positive
d. Negative
Que.______________means to assign a beginning value to the counter or accumulator.
a. Initializing
b. Updating
c. Incrementing
d. Checking