Variety
Variables, Constants
Basic C++
Selection Structure
Repetition Structure
100
This directs the computer to repeat one or more instructions until some condition is met
What is Repetition structure
100
This is the values True and False named in honor of the English mathematician Geroge Boole, who invented Boolean algebra
What is Boolean values
100
the process of assigning a beginning (or initial) value to a memory location is this
What is initializing
100
This represents the And logical operator in C++
What is &&
100
This is a numeric variable used for counting something
What is counter
200
These convert instructions into 0s and 1s
What is compilers
200
These are letters, symbols, and numbers that will not be used in calculations
What is characters
200
This is two double quotation marks with no space in between. Ex. ""
What is empty string
200
This tells the computer to leave the switch statement at that point.
What is Break Statement
200
This is a numeric variable used for accumulating (adding together) something.
What is Accumulator
300
These are the three basic structures in which programs are written
What is Logic Structures
300
This data type stores zero or more characters.
What is string variable
300
An operator comprised of an arithmetic operator and the assignment operator; +=, -=, *=, /=, and %= are these
What is Arithmetic operator
300
This can be used only within the statement block in which it is declared
What is local variable
300
This is the input instruction that appears above a loop; used to get the first input item from the user
What is priming read
400
This is the file thatcontains all machine code necessary to run your C++ program
What is an Executable file
400
Unlike numeric data, character data is represented in internal memory using this codes
What is ASCII
400
A memory location whose contents can change while a program is running is this
What is variable
400
This is a path that contains more than one statement, the enclosing the statements in a set of braces
What is statement block
400
This is a c++ statement that you can use to code a posttest loop
What is do while statement
500
This is the systems that contain both the editor and compiler in one integrated environment
What is IDE ( Integrated Development Environment)
500
This can be used to get string input from the user at the keyboard
What is getline () function
500
Combines the object file with other machine code necessary to run your C++ program is this
What is linker
500
This is used in a selection structure to specify a decision the program needs to make.
What is Condition
500
This is a C++ statement that you can use to code a pretest loop.
What is for statement