Exam 6: The Repetition Structure

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

The startvalue in a For...Next loop structure may be omitted.

(True/False)
4.9/5
(40)

The For...Next loop is represented in a flowchart by a hexagon.

(True/False)
4.8/5
(39)

The loop created by the For...Next statement is a ____ loop.

(Multiple Choice)
4.8/5
(38)

Updating is also called incrementing.

(True/False)
4.8/5
(36)

According to the following code when the loop terminates what value is in num? Dim startNum, stopNum, stepNum, num As Integer startNum = 1 stopNum = 8 stepNum = 2 For num = startNum To stopNum Step stepNum . . Next num

(Multiple Choice)
4.9/5
(30)

In the Do...Loop statement, the keyword While indicates that the loop instructions should be processed while the condition is false.

(True/False)
4.8/5
(39)

The condition used in the Do...Loop statement must evaluate to an Integer value.

(True/False)
4.8/5
(38)

An accumulator is a numeric variable used for counting something.

(True/False)
4.8/5
(37)

The repetition programming structure is used to make decisions in a program.

(True/False)
4.8/5
(32)

Every program contains the sequence programming structure.

(True/False)
4.9/5
(27)
Showing 41 - 50 of 50
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)