Deck 4: Performing Loops

ملء الشاشة (f)
exit full mode
سؤال
In the following segment of code,
Number = 1;
While(number
The body of the loop is ____.

A) empty
B) cout
C) cout
D) number
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
The following loop will execute ____ time(s).
Number = 1;
While(number

A) 1
B) 9
C) 10
D) an infinite number of
سؤال
What common pitfall can you identify in the following segment of code?
Number = 1;
While(number

A) The programmer failed to initialize the loop control variable.
B) An unwanted semicolon was added.
C) The programmer forgot the curly braces.
D) It assumes C++ is case sensitive.
سؤال
A ____ loop is one that must execute a specific number of times.

A) while
B) do-while
C) definite
D) count-controlled
سؤال
If the expression in the while statement is true, the ____ executes, and the Boolean expression is tested again.

A) conditional expression
B) iterator
C) loop body
D) inner loop
سؤال
Many programmers recommend that you initialize every variable in your programs.
سؤال
The initialize portion of a for loop ____.

A) is mandatory
B) can appear in any order in the for statement
C) is separated by a comma from the evaluate portion
D) can contain multiple statements
سؤال
The initialize portion of a for loop comes after the evaluate portion.
سؤال
The segment of code shown below displays "Hello!" ____ times:
Int count;
Const int NUM_LOOPS = 5;
Count = 0;
While( count

A) 0
B) 4
C) 5
D) 6
سؤال
If a program runs for several seconds and appears to be doing nothing or produces repeated output, you should suspect an infinite loop.
سؤال
A loop body can be a single statement or a block of statements.
سؤال
If you fail to initialize a loop control variable, C++ will automatically assign a value of 0 to the variable.
سؤال
The do-while loop is a(n) ____ loop.

A) pretest
B) posttest
C) nested
D) inner
سؤال
The following loop will execute ____ time(s).
Number = 1;
While(number

A) 1
B) 9
C) 10
D) an infinite number of
سؤال
In the following segment of code,
Number = 1;
While(number
The body of the loop is ____.

A) empty
B) everything in between the curly brackets
C) cout
D) number
سؤال
What common pitfall can you identify in the following segment of code?
Number = 1;
While(number

A) The programmer failed to initialize the loop control variable.
B) An unwanted semicolon was added.
C) The programmer forgot the curly braces.
D) The programmer failed to alter the loop control variable.
سؤال
As a custom, many programmers use the variable names i and ____ as iterators.

A) a
B) e
C) j
D) x
سؤال
It is preferable to initialize loop control variables at the beginning of a program.
سؤال
In C++, a(n) ____ has an unknown value and is of no practical use.

A) garbage value
B) iterator
C) sentinel value
D) loop control variable
سؤال
What common pitfall can you identify in the following segment of code?
Int number;
While(number

A) The programmer failed to initialize the loop control variable.
B) An unwanted semicolon was added.
C) The programmer forgot the curly braces.
D) It assumes C++ is case sensitive.
سؤال
Most often the evaluate part of the for statement compares the loop control variable with a ____________________ or limit.
سؤال
What happens if you fail to initialize a loop control variable?
سؤال
A priming _________________________ is an input statement that initializes a variable before a loop begins.
سؤال
The while loop and the for loop are ____ loops.

A) pretest
B) posttest
C) nested
D) inner
سؤال
To create a loop that executes at least one time, you should use a ____ loop.

A) for
B) while
C) do-while
D) pretest
سؤال
When you write a loop, what actions must be taken with the loop control variable?
سؤال
A loop that completely contains another is a(n) ____ loop.

A) protecting
B) parent
C) covering
D) outer
سؤال
The body of a do-while loop executes ____.

A) zero or more times
B) at least one time
C) at most one time
D) any number of times
سؤال
A(n) ____________________ loop is one in which the loop control variable is tested after the loop body executes.
سؤال
In what situations would you typically use a loop?
سؤال
What types of variables should be initialized?
سؤال
What kind of C++ expression can be placed inside the parentheses in the while statement?
سؤال
When you place another loop within a loop, the loops are ____ loops.

A) inner
B) nested
C) inside
D) outer
سؤال
A loop that falls entirely within the body of another is a(n) ____ loop.

A) inner
B) child
C) restricted
D) connected
سؤال
What is a priming input statement?
سؤال
Totals are ____________________ by processing individual records one at a time in a loop and adding numeric data to a total.
سؤال
What types of mistakes are easy to make when working with loops?
سؤال
When should the loop control variable be initialized?
سؤال
In most C++ compilers you can stop an infinite loop from executing by pressing the Ctrl + ____________________ or Ctrl + Break keys.
سؤال
The most difficult aspect of working with ____ loops is keeping track of the separate loop control variables that direct the program's execution.

A) nested
B) count-controlled
C) outer
D) definite
سؤال
Match between columns
tests the loop-continuing condition at the end, or bottom, of the loop
while loop
tests the loop-continuing condition at the end, or bottom, of the loop
sentinel value
tests the loop-continuing condition at the end, or bottom, of the loop
loop body
tests the loop-continuing condition at the end, or bottom, of the loop
do-while loop
tests the loop-continuing condition at the end, or bottom, of the loop
garbage value
tests the loop-continuing condition at the end, or bottom, of the loop
pretest loop
tests the loop-continuing condition at the end, or bottom, of the loop
loop control variable
tests the loop-continuing condition at the end, or bottom, of the loop
iterator
tests the loop-continuing condition at the end, or bottom, of the loop
for loop
سؤال
Match between columns
loop in which loop control variable is tested before the loop body is executed
while loop
loop in which loop control variable is tested before the loop body is executed
sentinel value
loop in which loop control variable is tested before the loop body is executed
loop body
loop in which loop control variable is tested before the loop body is executed
do-while loop
loop in which loop control variable is tested before the loop body is executed
garbage value
loop in which loop control variable is tested before the loop body is executed
pretest loop
loop in which loop control variable is tested before the loop body is executed
loop control variable
loop in which loop control variable is tested before the loop body is executed
iterator
loop in which loop control variable is tested before the loop body is executed
for loop
سؤال
Match between columns
used only to count the executions of a loop
while loop
used only to count the executions of a loop
sentinel value
used only to count the executions of a loop
loop body
used only to count the executions of a loop
do-while loop
used only to count the executions of a loop
garbage value
used only to count the executions of a loop
pretest loop
used only to count the executions of a loop
loop control variable
used only to count the executions of a loop
iterator
used only to count the executions of a loop
for loop
سؤال
Write a program that projects sales goals for a salesperson for the next several years.The user should be prompted for a first year's merchandise sales amount and a number of years to project the goals. For the first year, the salesperson's goal is the current sales amount. After that, sales are projected to grow at a rate of 8 percent per year. You should use a do-while loop.
سؤال
Write a while loop equivalent to the following for loop:
int count;
for(count = 1; count
سؤال
Match between columns
contains sections that initialize, evaluate, and alter a loop control variable
while loop
contains sections that initialize, evaluate, and alter a loop control variable
sentinel value
contains sections that initialize, evaluate, and alter a loop control variable
loop body
contains sections that initialize, evaluate, and alter a loop control variable
do-while loop
contains sections that initialize, evaluate, and alter a loop control variable
garbage value
contains sections that initialize, evaluate, and alter a loop control variable
pretest loop
contains sections that initialize, evaluate, and alter a loop control variable
loop control variable
contains sections that initialize, evaluate, and alter a loop control variable
iterator
contains sections that initialize, evaluate, and alter a loop control variable
for loop
سؤال
Match between columns
uninitialized variable
while loop
uninitialized variable
sentinel value
uninitialized variable
loop body
uninitialized variable
do-while loop
uninitialized variable
garbage value
uninitialized variable
pretest loop
uninitialized variable
loop control variable
uninitialized variable
iterator
uninitialized variable
for loop
سؤال
Match between columns
value that determines when a loop will end
while loop
value that determines when a loop will end
sentinel value
value that determines when a loop will end
loop body
value that determines when a loop will end
do-while loop
value that determines when a loop will end
garbage value
value that determines when a loop will end
pretest loop
value that determines when a loop will end
loop control variable
value that determines when a loop will end
iterator
value that determines when a loop will end
for loop
سؤال
Match between columns
controls the execution of a loop body
while loop
controls the execution of a loop body
sentinel value
controls the execution of a loop body
loop body
controls the execution of a loop body
do-while loop
controls the execution of a loop body
garbage value
controls the execution of a loop body
pretest loop
controls the execution of a loop body
loop control variable
controls the execution of a loop body
iterator
controls the execution of a loop body
for loop
سؤال
Match between columns
contains the statements that execute within a loop
while loop
contains the statements that execute within a loop
sentinel value
contains the statements that execute within a loop
loop body
contains the statements that execute within a loop
do-while loop
contains the statements that execute within a loop
garbage value
contains the statements that execute within a loop
pretest loop
contains the statements that execute within a loop
loop control variable
contains the statements that execute within a loop
iterator
contains the statements that execute within a loop
for loop
سؤال
Match between columns
repetition structure that executes as long as a tested expression is true
while loop
repetition structure that executes as long as a tested expression is true
sentinel value
repetition structure that executes as long as a tested expression is true
loop body
repetition structure that executes as long as a tested expression is true
do-while loop
repetition structure that executes as long as a tested expression is true
garbage value
repetition structure that executes as long as a tested expression is true
pretest loop
repetition structure that executes as long as a tested expression is true
loop control variable
repetition structure that executes as long as a tested expression is true
iterator
repetition structure that executes as long as a tested expression is true
for loop
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/51
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 4: Performing Loops
1
In the following segment of code,
Number = 1;
While(number
The body of the loop is ____.

A) empty
B) cout
C) cout
D) number
C
2
The following loop will execute ____ time(s).
Number = 1;
While(number

A) 1
B) 9
C) 10
D) an infinite number of
D
3
What common pitfall can you identify in the following segment of code?
Number = 1;
While(number

A) The programmer failed to initialize the loop control variable.
B) An unwanted semicolon was added.
C) The programmer forgot the curly braces.
D) It assumes C++ is case sensitive.
C
4
A ____ loop is one that must execute a specific number of times.

A) while
B) do-while
C) definite
D) count-controlled
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
5
If the expression in the while statement is true, the ____ executes, and the Boolean expression is tested again.

A) conditional expression
B) iterator
C) loop body
D) inner loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
6
Many programmers recommend that you initialize every variable in your programs.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
7
The initialize portion of a for loop ____.

A) is mandatory
B) can appear in any order in the for statement
C) is separated by a comma from the evaluate portion
D) can contain multiple statements
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
8
The initialize portion of a for loop comes after the evaluate portion.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
9
The segment of code shown below displays "Hello!" ____ times:
Int count;
Const int NUM_LOOPS = 5;
Count = 0;
While( count

A) 0
B) 4
C) 5
D) 6
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
10
If a program runs for several seconds and appears to be doing nothing or produces repeated output, you should suspect an infinite loop.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
11
A loop body can be a single statement or a block of statements.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
12
If you fail to initialize a loop control variable, C++ will automatically assign a value of 0 to the variable.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
13
The do-while loop is a(n) ____ loop.

A) pretest
B) posttest
C) nested
D) inner
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
14
The following loop will execute ____ time(s).
Number = 1;
While(number

A) 1
B) 9
C) 10
D) an infinite number of
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
15
In the following segment of code,
Number = 1;
While(number
The body of the loop is ____.

A) empty
B) everything in between the curly brackets
C) cout
D) number
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
16
What common pitfall can you identify in the following segment of code?
Number = 1;
While(number

A) The programmer failed to initialize the loop control variable.
B) An unwanted semicolon was added.
C) The programmer forgot the curly braces.
D) The programmer failed to alter the loop control variable.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
17
As a custom, many programmers use the variable names i and ____ as iterators.

A) a
B) e
C) j
D) x
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
18
It is preferable to initialize loop control variables at the beginning of a program.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
19
In C++, a(n) ____ has an unknown value and is of no practical use.

A) garbage value
B) iterator
C) sentinel value
D) loop control variable
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
20
What common pitfall can you identify in the following segment of code?
Int number;
While(number

A) The programmer failed to initialize the loop control variable.
B) An unwanted semicolon was added.
C) The programmer forgot the curly braces.
D) It assumes C++ is case sensitive.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
21
Most often the evaluate part of the for statement compares the loop control variable with a ____________________ or limit.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
22
What happens if you fail to initialize a loop control variable?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
23
A priming _________________________ is an input statement that initializes a variable before a loop begins.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
24
The while loop and the for loop are ____ loops.

A) pretest
B) posttest
C) nested
D) inner
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
25
To create a loop that executes at least one time, you should use a ____ loop.

A) for
B) while
C) do-while
D) pretest
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
26
When you write a loop, what actions must be taken with the loop control variable?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
27
A loop that completely contains another is a(n) ____ loop.

A) protecting
B) parent
C) covering
D) outer
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
28
The body of a do-while loop executes ____.

A) zero or more times
B) at least one time
C) at most one time
D) any number of times
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
29
A(n) ____________________ loop is one in which the loop control variable is tested after the loop body executes.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
30
In what situations would you typically use a loop?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
31
What types of variables should be initialized?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
32
What kind of C++ expression can be placed inside the parentheses in the while statement?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
33
When you place another loop within a loop, the loops are ____ loops.

A) inner
B) nested
C) inside
D) outer
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
34
A loop that falls entirely within the body of another is a(n) ____ loop.

A) inner
B) child
C) restricted
D) connected
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
35
What is a priming input statement?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
36
Totals are ____________________ by processing individual records one at a time in a loop and adding numeric data to a total.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
37
What types of mistakes are easy to make when working with loops?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
38
When should the loop control variable be initialized?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
39
In most C++ compilers you can stop an infinite loop from executing by pressing the Ctrl + ____________________ or Ctrl + Break keys.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
40
The most difficult aspect of working with ____ loops is keeping track of the separate loop control variables that direct the program's execution.

A) nested
B) count-controlled
C) outer
D) definite
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
41
Match between columns
tests the loop-continuing condition at the end, or bottom, of the loop
while loop
tests the loop-continuing condition at the end, or bottom, of the loop
sentinel value
tests the loop-continuing condition at the end, or bottom, of the loop
loop body
tests the loop-continuing condition at the end, or bottom, of the loop
do-while loop
tests the loop-continuing condition at the end, or bottom, of the loop
garbage value
tests the loop-continuing condition at the end, or bottom, of the loop
pretest loop
tests the loop-continuing condition at the end, or bottom, of the loop
loop control variable
tests the loop-continuing condition at the end, or bottom, of the loop
iterator
tests the loop-continuing condition at the end, or bottom, of the loop
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
42
Match between columns
loop in which loop control variable is tested before the loop body is executed
while loop
loop in which loop control variable is tested before the loop body is executed
sentinel value
loop in which loop control variable is tested before the loop body is executed
loop body
loop in which loop control variable is tested before the loop body is executed
do-while loop
loop in which loop control variable is tested before the loop body is executed
garbage value
loop in which loop control variable is tested before the loop body is executed
pretest loop
loop in which loop control variable is tested before the loop body is executed
loop control variable
loop in which loop control variable is tested before the loop body is executed
iterator
loop in which loop control variable is tested before the loop body is executed
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
43
Match between columns
used only to count the executions of a loop
while loop
used only to count the executions of a loop
sentinel value
used only to count the executions of a loop
loop body
used only to count the executions of a loop
do-while loop
used only to count the executions of a loop
garbage value
used only to count the executions of a loop
pretest loop
used only to count the executions of a loop
loop control variable
used only to count the executions of a loop
iterator
used only to count the executions of a loop
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
44
Write a program that projects sales goals for a salesperson for the next several years.The user should be prompted for a first year's merchandise sales amount and a number of years to project the goals. For the first year, the salesperson's goal is the current sales amount. After that, sales are projected to grow at a rate of 8 percent per year. You should use a do-while loop.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
45
Write a while loop equivalent to the following for loop:
int count;
for(count = 1; count
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
46
Match between columns
contains sections that initialize, evaluate, and alter a loop control variable
while loop
contains sections that initialize, evaluate, and alter a loop control variable
sentinel value
contains sections that initialize, evaluate, and alter a loop control variable
loop body
contains sections that initialize, evaluate, and alter a loop control variable
do-while loop
contains sections that initialize, evaluate, and alter a loop control variable
garbage value
contains sections that initialize, evaluate, and alter a loop control variable
pretest loop
contains sections that initialize, evaluate, and alter a loop control variable
loop control variable
contains sections that initialize, evaluate, and alter a loop control variable
iterator
contains sections that initialize, evaluate, and alter a loop control variable
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
47
Match between columns
uninitialized variable
while loop
uninitialized variable
sentinel value
uninitialized variable
loop body
uninitialized variable
do-while loop
uninitialized variable
garbage value
uninitialized variable
pretest loop
uninitialized variable
loop control variable
uninitialized variable
iterator
uninitialized variable
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
48
Match between columns
value that determines when a loop will end
while loop
value that determines when a loop will end
sentinel value
value that determines when a loop will end
loop body
value that determines when a loop will end
do-while loop
value that determines when a loop will end
garbage value
value that determines when a loop will end
pretest loop
value that determines when a loop will end
loop control variable
value that determines when a loop will end
iterator
value that determines when a loop will end
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
49
Match between columns
controls the execution of a loop body
while loop
controls the execution of a loop body
sentinel value
controls the execution of a loop body
loop body
controls the execution of a loop body
do-while loop
controls the execution of a loop body
garbage value
controls the execution of a loop body
pretest loop
controls the execution of a loop body
loop control variable
controls the execution of a loop body
iterator
controls the execution of a loop body
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
50
Match between columns
contains the statements that execute within a loop
while loop
contains the statements that execute within a loop
sentinel value
contains the statements that execute within a loop
loop body
contains the statements that execute within a loop
do-while loop
contains the statements that execute within a loop
garbage value
contains the statements that execute within a loop
pretest loop
contains the statements that execute within a loop
loop control variable
contains the statements that execute within a loop
iterator
contains the statements that execute within a loop
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
51
Match between columns
repetition structure that executes as long as a tested expression is true
while loop
repetition structure that executes as long as a tested expression is true
sentinel value
repetition structure that executes as long as a tested expression is true
loop body
repetition structure that executes as long as a tested expression is true
do-while loop
repetition structure that executes as long as a tested expression is true
garbage value
repetition structure that executes as long as a tested expression is true
pretest loop
repetition structure that executes as long as a tested expression is true
loop control variable
repetition structure that executes as long as a tested expression is true
iterator
repetition structure that executes as long as a tested expression is true
for loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 51 في هذه المجموعة.