Chapter 2
Chapter 3
Chapter 4
Selection
Structure
Repetition
Structure
100
IPO
What is input, processing, output.
100
Data type that can only store one character.
What is char
100
The assignment operator in C++
What is the equal sign
100
The decision symbol.
What is diamond
100
The repetition structure is referred to more simply as a ____.
What is a loop
200
Pseudocode means
What is false code
200
The declaration statement of a named constant must begin with the ____ keyword.
What is const
200
You create a ____ when you enter an instruction that does not give you the expected results.
What is a logic error
200
A(n) ____ selection structure contains only one set of special instructions, which are processed when the condition is true.
What is single-alternative
200
You create a statement block by enclosing the statements in a set of ____.
What is braces (curly braces)
300
The ____ step to creating a computer solution is to analyze the problem.
What is first
300
Data type that stores a real number.
What is double
300
A message used to document a program internally.
What is a comment
300
Use this to convert a character to lowercase.
What is tolower
300
A loop whose condition is evaluated before the instructions in the loop body are processed.
What is pretest loop
400
A visual tool that programmers use to help them plan an algorithm.
What is a flowchart
400
Assigning a beginning value to a memory location.
What is initializing
400
A #include ____ provides a convenient way to merge the source code from one file with the source code in another file, without having to retype the code.
What is directive
400
____ operators allow you to combine two or more conditions into one compound condition.
What is logical
400
A numeric variable used for adding together something.
What is accumulator
500
The process symbol in a flowchart.
What is a rectangle
500
The rules you need to follow when using a programming language.
What is syntax
500
cin >> grade;
What is input stream
500
Instead of using the multiple-alternative form of the if statement, you may sometimes use the ____ statement to code a multiple-alternative selection.
What is switch
500
The instructions in a(n) ____ loop will always be processed at least once.
What is postest
M
e
n
u