Deck 5: Looping

ملء الشاشة (f)
exit full mode
سؤال
You can either increment or decrement the loop control variable.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
Every high-level computer programming language contains a while statement.
سؤال
The loop control variable is initialized after entering the loop.
سؤال
Both the while loop and the for loop are examples of pretest loops.
سؤال
It is the programmer's responsibility to initialize all variables that must start with a specific value.
سؤال
A mistake programmers often make with loops is that they ____.

A)initialize the loop control variable prior to entering the loop body
B)increment the loop control variable inside of the loop body
C)include statements inside the loop that belong outside the loop
D)enclose the inner loop entirely within the outer loop in a nested loop
سؤال
A loop within another loop is known as a(n)____ loop.

A)indefinite
B)infinite
C)nested
D)hidden
سؤال
An indefinite loop is a loop that never stops.
سؤال
Forgetting to initialize and alter the loop control variable are common mistakes that programmers sometimes make.
سؤال
Usually, when you create nested loops, each loop has its own ____.

A)sentinel value
B)goto statement
C)entrance condition
D)loop control variable
سؤال
Once your logic enters the body of a structured loop, ____.

A)the entire loop must execute
B)the loop can be terminated with a break statement
C)the loop will execute indefinitely
D)a decision statement will be evaluated
سؤال
When one loop appears inside another, the loop that contains the other loop is called the ____ loop.

A)indefinite
B)definite
C)inner
D)outer
سؤال
The safest action is to assign the value 1 to accumulators before using them.
سؤال
The first step in a while loop is typically to ____.

A)compare the loop control variable to a constant value
B)initialize the loop control variable
C)increment the loop control variable
D)execute the body of the loop
سؤال
A(n)____ is any numeric variable you use to count the number of times an event has occurred.

A)accumulator
B)key
C)index
D)counter
سؤال
A(n)____ loop executes a predetermined number of times.

A)terminal
B)definite
C)indefinite
D)infinite
سؤال
When one loop appears inside another is is called an indented loop.
سؤال
Use a counter or a(n)____ to control a loop's repetitions.

A)sentinel variable
B)end value
C)sentinel value
D)end statement
سؤال
In some cases, a loop control variable does not have to be initialized.
سؤال
Many loop control variable values are altered by ____, or adding to them.

A)incrementing
B)decrementing
C)accumulating
D)deprecating
سؤال
In a ____, the loop body might never execute because the question controlling the loop might be false the first time it is asked.

A)summary report
B)pretest loop
C)posttest loop
D)loop control
سؤال
The ____ loop provides three actions in one compact statement.

A)for
B)while
C)do until
D)repeat
سؤال
You usually use the for loop with ____ loops.

A)indefinite
B)definite
C)inner
D)outer
سؤال
____ is a technique with which you try to prepare for all possible errors before they occur.

A)Incrementing
B)Stub
C)Nested loop
D)Defensive programming
سؤال
____________________ can ensure that a value is the correct data type or that it falls within an acceptable range.
سؤال
The ____ loop is particularly useful when processing arrays.

A)for
B)while
C)infinite
D)nested
سؤال
Programmers use the term ____ to describe programs that are well designed and easy to understand and maintain.

A)industrial
B)intractable
C)well behaved
D)elegant
سؤال
The amount by which a for loop control variable changes is often called a ____ value.

A)group
B)key
C)step
D)sentinel
سؤال
____ a data item means you override incorrect data by setting the variable to a specific value.

A)Flexing
B)Tracing
C)Forcing
D)Blanking
سؤال
A(n)____ is very similar to a counter that you use to count loop iterations, except that you usually add a value other than one to this type of variable.

A)transaction
B)total
C)validator
D)accumulator
سؤال
In a for statement, a loop control variable is initialized, tested, and ____________________.
سؤال
A mistake programmers often make with loops is that they ____.

A)neglect to initialize the loop control variable prior to entering the loop body
B)increment the loop control variable inside of the loop body
C)validate data to ensure values are the correct data type or that they fall within an acceptable range
D)enclose the inner loop entirely within the outer loop in a nested loop
سؤال
To add to a variable is to ____________________ the variable.
سؤال
In a ____, the loop body executes at least one time because the loop control variable is not tested until after one iteration.

A)nested loop
B)pretest loop
C)posttest loop
D)loop control
سؤال
Business reports that list only totals, with no individual item details, are called ____.

A)detail reports
B)summary reports
C)transaction reports
D)control-break reports
سؤال
____________________ are frequently used to accumulate totals and to validate data.
سؤال
Loops are frequently used to ____; that is, to make sure it is meaningful and useful.

A)validate data
B)restructure data
C)simulate data
D)corroborate data
سؤال
A comparison is correct only when the correct ____ and operator are used.

A)expression
B)operands
C)statements
D)index
سؤال
Programmers employ the acronym ____ to mean that if your input is incorrect, your output is worthless.

A)IBOW
B)GIGO
C)IIOW
D)GIGS
سؤال
A posttest loop is sometimes called a ____________________ loop.
سؤال
What is a step value?
سؤال
Match between columns
A variable that you use to gather values
indefinite
A variable that you use to gather values
loop control variable
A variable that you use to gather values
nested loops
A variable that you use to gather values
counter
A variable that you use to gather values
increment
A variable that you use to gather values
decrement
A variable that you use to gather values
accumulator
A variable that you use to gather values
loop
A variable that you use to gather values
step value
A variable that you use to gather values
forcing
سؤال
Match between columns
To override incorrect data by setting the variable to a specific, predetermined value
indefinite
To override incorrect data by setting the variable to a specific, predetermined value
loop control variable
To override incorrect data by setting the variable to a specific, predetermined value
nested loops
To override incorrect data by setting the variable to a specific, predetermined value
counter
To override incorrect data by setting the variable to a specific, predetermined value
increment
To override incorrect data by setting the variable to a specific, predetermined value
decrement
To override incorrect data by setting the variable to a specific, predetermined value
accumulator
To override incorrect data by setting the variable to a specific, predetermined value
loop
To override incorrect data by setting the variable to a specific, predetermined value
step value
To override incorrect data by setting the variable to a specific, predetermined value
forcing
سؤال
What are the tasks performed by the for count = 0 to 3 statement?
سؤال
Explain when it would be appropriate to write an indefinite loop.
سؤال
What is the difference between a definite loop and an indefinite loop?
سؤال
Match between columns
Loops within loops
indefinite
Loops within loops
loop control variable
Loops within loops
nested loops
Loops within loops
counter
Loops within loops
increment
Loops within loops
decrement
Loops within loops
accumulator
Loops within loops
loop
Loops within loops
step value
Loops within loops
forcing
سؤال
How might user data be validated?
سؤال
When are you required to use a for statement, and what are the advantages of for statements?
سؤال
What are the three steps that should occur in every loop?
سؤال
Match between columns
The amount by which a for loop control variable changes
indefinite
The amount by which a for loop control variable changes
loop control variable
The amount by which a for loop control variable changes
nested loops
The amount by which a for loop control variable changes
counter
The amount by which a for loop control variable changes
increment
The amount by which a for loop control variable changes
decrement
The amount by which a for loop control variable changes
accumulator
The amount by which a for loop control variable changes
loop
The amount by which a for loop control variable changes
step value
The amount by which a for loop control variable changes
forcing
سؤال
What are common mistakes made by programmers in coding loops?
سؤال
Match between columns
A loop that may execute a different number of times each time the program executes
indefinite
A loop that may execute a different number of times each time the program executes
loop control variable
A loop that may execute a different number of times each time the program executes
nested loops
A loop that may execute a different number of times each time the program executes
counter
A loop that may execute a different number of times each time the program executes
increment
A loop that may execute a different number of times each time the program executes
decrement
A loop that may execute a different number of times each time the program executes
accumulator
A loop that may execute a different number of times each time the program executes
loop
A loop that may execute a different number of times each time the program executes
step value
A loop that may execute a different number of times each time the program executes
forcing
سؤال
What is an accumulator?
سؤال
What is an advantage of using fewer instructions?
سؤال
Match between columns
Any numeric variable you use to count the number of times an event has occurred
indefinite
Any numeric variable you use to count the number of times an event has occurred
loop control variable
Any numeric variable you use to count the number of times an event has occurred
nested loops
Any numeric variable you use to count the number of times an event has occurred
counter
Any numeric variable you use to count the number of times an event has occurred
increment
Any numeric variable you use to count the number of times an event has occurred
decrement
Any numeric variable you use to count the number of times an event has occurred
accumulator
Any numeric variable you use to count the number of times an event has occurred
loop
Any numeric variable you use to count the number of times an event has occurred
step value
Any numeric variable you use to count the number of times an event has occurred
forcing
سؤال
Match between columns
To decrease a variable's value
indefinite
To decrease a variable's value
loop control variable
To decrease a variable's value
nested loops
To decrease a variable's value
counter
To decrease a variable's value
increment
To decrease a variable's value
decrement
To decrease a variable's value
accumulator
To decrease a variable's value
loop
To decrease a variable's value
step value
To decrease a variable's value
forcing
سؤال
Match between columns
To add to a variable
indefinite
To add to a variable
loop control variable
To add to a variable
nested loops
To add to a variable
counter
To add to a variable
increment
To add to a variable
decrement
To add to a variable
accumulator
To add to a variable
loop
To add to a variable
step value
To add to a variable
forcing
سؤال
Match between columns
Initialized before entering a while loop
indefinite
Initialized before entering a while loop
loop control variable
Initialized before entering a while loop
nested loops
Initialized before entering a while loop
counter
Initialized before entering a while loop
increment
Initialized before entering a while loop
decrement
Initialized before entering a while loop
accumulator
Initialized before entering a while loop
loop
Initialized before entering a while loop
step value
Initialized before entering a while loop
forcing
سؤال
Match between columns
One set of instructions that operates on multiple, separate sets of data
indefinite
One set of instructions that operates on multiple, separate sets of data
loop control variable
One set of instructions that operates on multiple, separate sets of data
nested loops
One set of instructions that operates on multiple, separate sets of data
counter
One set of instructions that operates on multiple, separate sets of data
increment
One set of instructions that operates on multiple, separate sets of data
decrement
One set of instructions that operates on multiple, separate sets of data
accumulator
One set of instructions that operates on multiple, separate sets of data
loop
One set of instructions that operates on multiple, separate sets of data
step value
One set of instructions that operates on multiple, separate sets of data
forcing
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/60
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 5: Looping
1
You can either increment or decrement the loop control variable.
True
2
Every high-level computer programming language contains a while statement.
True
3
The loop control variable is initialized after entering the loop.
False
4
Both the while loop and the for loop are examples of pretest loops.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
5
It is the programmer's responsibility to initialize all variables that must start with a specific value.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
6
A mistake programmers often make with loops is that they ____.

A)initialize the loop control variable prior to entering the loop body
B)increment the loop control variable inside of the loop body
C)include statements inside the loop that belong outside the loop
D)enclose the inner loop entirely within the outer loop in a nested loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
7
A loop within another loop is known as a(n)____ loop.

A)indefinite
B)infinite
C)nested
D)hidden
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
8
An indefinite loop is a loop that never stops.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
9
Forgetting to initialize and alter the loop control variable are common mistakes that programmers sometimes make.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
10
Usually, when you create nested loops, each loop has its own ____.

A)sentinel value
B)goto statement
C)entrance condition
D)loop control variable
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
11
Once your logic enters the body of a structured loop, ____.

A)the entire loop must execute
B)the loop can be terminated with a break statement
C)the loop will execute indefinitely
D)a decision statement will be evaluated
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
12
When one loop appears inside another, the loop that contains the other loop is called the ____ loop.

A)indefinite
B)definite
C)inner
D)outer
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
13
The safest action is to assign the value 1 to accumulators before using them.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
14
The first step in a while loop is typically to ____.

A)compare the loop control variable to a constant value
B)initialize the loop control variable
C)increment the loop control variable
D)execute the body of the loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
15
A(n)____ is any numeric variable you use to count the number of times an event has occurred.

A)accumulator
B)key
C)index
D)counter
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
16
A(n)____ loop executes a predetermined number of times.

A)terminal
B)definite
C)indefinite
D)infinite
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
17
When one loop appears inside another is is called an indented loop.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
18
Use a counter or a(n)____ to control a loop's repetitions.

A)sentinel variable
B)end value
C)sentinel value
D)end statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
19
In some cases, a loop control variable does not have to be initialized.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
20
Many loop control variable values are altered by ____, or adding to them.

A)incrementing
B)decrementing
C)accumulating
D)deprecating
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
21
In a ____, the loop body might never execute because the question controlling the loop might be false the first time it is asked.

A)summary report
B)pretest loop
C)posttest loop
D)loop control
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
22
The ____ loop provides three actions in one compact statement.

A)for
B)while
C)do until
D)repeat
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
23
You usually use the for loop with ____ loops.

A)indefinite
B)definite
C)inner
D)outer
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
24
____ is a technique with which you try to prepare for all possible errors before they occur.

A)Incrementing
B)Stub
C)Nested loop
D)Defensive programming
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
25
____________________ can ensure that a value is the correct data type or that it falls within an acceptable range.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
26
The ____ loop is particularly useful when processing arrays.

A)for
B)while
C)infinite
D)nested
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
27
Programmers use the term ____ to describe programs that are well designed and easy to understand and maintain.

A)industrial
B)intractable
C)well behaved
D)elegant
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
28
The amount by which a for loop control variable changes is often called a ____ value.

A)group
B)key
C)step
D)sentinel
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
29
____ a data item means you override incorrect data by setting the variable to a specific value.

A)Flexing
B)Tracing
C)Forcing
D)Blanking
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
30
A(n)____ is very similar to a counter that you use to count loop iterations, except that you usually add a value other than one to this type of variable.

A)transaction
B)total
C)validator
D)accumulator
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
31
In a for statement, a loop control variable is initialized, tested, and ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
32
A mistake programmers often make with loops is that they ____.

A)neglect to initialize the loop control variable prior to entering the loop body
B)increment the loop control variable inside of the loop body
C)validate data to ensure values are the correct data type or that they fall within an acceptable range
D)enclose the inner loop entirely within the outer loop in a nested loop
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
33
To add to a variable is to ____________________ the variable.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
34
In a ____, the loop body executes at least one time because the loop control variable is not tested until after one iteration.

A)nested loop
B)pretest loop
C)posttest loop
D)loop control
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
35
Business reports that list only totals, with no individual item details, are called ____.

A)detail reports
B)summary reports
C)transaction reports
D)control-break reports
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
36
____________________ are frequently used to accumulate totals and to validate data.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
37
Loops are frequently used to ____; that is, to make sure it is meaningful and useful.

A)validate data
B)restructure data
C)simulate data
D)corroborate data
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
38
A comparison is correct only when the correct ____ and operator are used.

A)expression
B)operands
C)statements
D)index
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
39
Programmers employ the acronym ____ to mean that if your input is incorrect, your output is worthless.

A)IBOW
B)GIGO
C)IIOW
D)GIGS
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
40
A posttest loop is sometimes called a ____________________ loop.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
41
What is a step value?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
42
Match between columns
A variable that you use to gather values
indefinite
A variable that you use to gather values
loop control variable
A variable that you use to gather values
nested loops
A variable that you use to gather values
counter
A variable that you use to gather values
increment
A variable that you use to gather values
decrement
A variable that you use to gather values
accumulator
A variable that you use to gather values
loop
A variable that you use to gather values
step value
A variable that you use to gather values
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
43
Match between columns
To override incorrect data by setting the variable to a specific, predetermined value
indefinite
To override incorrect data by setting the variable to a specific, predetermined value
loop control variable
To override incorrect data by setting the variable to a specific, predetermined value
nested loops
To override incorrect data by setting the variable to a specific, predetermined value
counter
To override incorrect data by setting the variable to a specific, predetermined value
increment
To override incorrect data by setting the variable to a specific, predetermined value
decrement
To override incorrect data by setting the variable to a specific, predetermined value
accumulator
To override incorrect data by setting the variable to a specific, predetermined value
loop
To override incorrect data by setting the variable to a specific, predetermined value
step value
To override incorrect data by setting the variable to a specific, predetermined value
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
44
What are the tasks performed by the for count = 0 to 3 statement?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
45
Explain when it would be appropriate to write an indefinite loop.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
46
What is the difference between a definite loop and an indefinite loop?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
47
Match between columns
Loops within loops
indefinite
Loops within loops
loop control variable
Loops within loops
nested loops
Loops within loops
counter
Loops within loops
increment
Loops within loops
decrement
Loops within loops
accumulator
Loops within loops
loop
Loops within loops
step value
Loops within loops
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
48
How might user data be validated?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
49
When are you required to use a for statement, and what are the advantages of for statements?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
50
What are the three steps that should occur in every loop?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
51
Match between columns
The amount by which a for loop control variable changes
indefinite
The amount by which a for loop control variable changes
loop control variable
The amount by which a for loop control variable changes
nested loops
The amount by which a for loop control variable changes
counter
The amount by which a for loop control variable changes
increment
The amount by which a for loop control variable changes
decrement
The amount by which a for loop control variable changes
accumulator
The amount by which a for loop control variable changes
loop
The amount by which a for loop control variable changes
step value
The amount by which a for loop control variable changes
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
52
What are common mistakes made by programmers in coding loops?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
53
Match between columns
A loop that may execute a different number of times each time the program executes
indefinite
A loop that may execute a different number of times each time the program executes
loop control variable
A loop that may execute a different number of times each time the program executes
nested loops
A loop that may execute a different number of times each time the program executes
counter
A loop that may execute a different number of times each time the program executes
increment
A loop that may execute a different number of times each time the program executes
decrement
A loop that may execute a different number of times each time the program executes
accumulator
A loop that may execute a different number of times each time the program executes
loop
A loop that may execute a different number of times each time the program executes
step value
A loop that may execute a different number of times each time the program executes
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
54
What is an accumulator?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
55
What is an advantage of using fewer instructions?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
56
Match between columns
Any numeric variable you use to count the number of times an event has occurred
indefinite
Any numeric variable you use to count the number of times an event has occurred
loop control variable
Any numeric variable you use to count the number of times an event has occurred
nested loops
Any numeric variable you use to count the number of times an event has occurred
counter
Any numeric variable you use to count the number of times an event has occurred
increment
Any numeric variable you use to count the number of times an event has occurred
decrement
Any numeric variable you use to count the number of times an event has occurred
accumulator
Any numeric variable you use to count the number of times an event has occurred
loop
Any numeric variable you use to count the number of times an event has occurred
step value
Any numeric variable you use to count the number of times an event has occurred
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
57
Match between columns
To decrease a variable's value
indefinite
To decrease a variable's value
loop control variable
To decrease a variable's value
nested loops
To decrease a variable's value
counter
To decrease a variable's value
increment
To decrease a variable's value
decrement
To decrease a variable's value
accumulator
To decrease a variable's value
loop
To decrease a variable's value
step value
To decrease a variable's value
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
58
Match between columns
To add to a variable
indefinite
To add to a variable
loop control variable
To add to a variable
nested loops
To add to a variable
counter
To add to a variable
increment
To add to a variable
decrement
To add to a variable
accumulator
To add to a variable
loop
To add to a variable
step value
To add to a variable
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
59
Match between columns
Initialized before entering a while loop
indefinite
Initialized before entering a while loop
loop control variable
Initialized before entering a while loop
nested loops
Initialized before entering a while loop
counter
Initialized before entering a while loop
increment
Initialized before entering a while loop
decrement
Initialized before entering a while loop
accumulator
Initialized before entering a while loop
loop
Initialized before entering a while loop
step value
Initialized before entering a while loop
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
60
Match between columns
One set of instructions that operates on multiple, separate sets of data
indefinite
One set of instructions that operates on multiple, separate sets of data
loop control variable
One set of instructions that operates on multiple, separate sets of data
nested loops
One set of instructions that operates on multiple, separate sets of data
counter
One set of instructions that operates on multiple, separate sets of data
increment
One set of instructions that operates on multiple, separate sets of data
decrement
One set of instructions that operates on multiple, separate sets of data
accumulator
One set of instructions that operates on multiple, separate sets of data
loop
One set of instructions that operates on multiple, separate sets of data
step value
One set of instructions that operates on multiple, separate sets of data
forcing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 60 في هذه المجموعة.