Exam 5: Control Structures II Repetition

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

The number of iterations of a counter-controlled loop is known in advance.

(True/False)
4.8/5
(32)

In a(n) "____________________" problem, either the loop executes one too many or one too few times.

(Short Answer)
4.8/5
(41)

In ____ structures, the computer repeats particular statements a certain number of times depending on some condition(s).

(Multiple Choice)
4.7/5
(37)

In a sentinel-controlled while loop, the body of the loop continues to execute until the EOF symbol is read.

(True/False)
4.8/5
(45)

Assume all variables are properly declared. The output of the following C++ code is 2 3 4 5. n = 1; while (n < 5) { n++; cout << n << " "; }

(True/False)
4.9/5
(45)

Suppose j, sum, and num are int variables, and the input is 26 34 61 4 -1. What is the output of the code? sum = 0; cin >> num; for (int j = 1; j <= 4; j++) { \quad sum = sum + num; \quad xin >> num; } cout << sum << endl;

(Multiple Choice)
4.7/5
(34)

Consider the following code. (Assume that all variables are properly declared.) cin >> ch; While (cin) { cout << ch; cin >> ch; } This code is an example of a(n) ____ while loop.

(Multiple Choice)
4.8/5
(37)

Which executes first in a do...while loop?

(Multiple Choice)
4.9/5
(36)

The statement in the body of a while loop acts as a decision maker.

(True/False)
4.8/5
(40)

Assume that all variables are properly declared. The following for loop executes 20 times. for (i = 0; i <= 20; i++) cout << i;

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

Filters

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