Conversion
Strings
Math
Variables
Misc
100

Change one data type into different data type.

What is type conversion or cast?

100

A data type that can hold a sequence of zero or more characters.

What is a string?

100

The five common arithmetic symbols.

What are +, -, *, /, %?

100

The C++ name for the kind of allowed data in a variable.

What is data type?

100

The data type name used to contain a single character value.

What is char?

200

An early encoding scheme that maps an integer number to a corresponding symbol.

What is ASCII (American Standard Code for Information Interchange)?

200

The name of the operation that joins two things, strings in this case, together.

What is concatenation?

200

These can change the order of operations in a mathematical expression.

What are parentheses?

200

The symbol used to move the value on the right side into the memory location designated on the left side.

What is the equal sign (=)?

200

The name of the convention that follows these rules: 1. The first letter of a variable is lower case 2. Subsequent letters of the same word are lower case 3. The first letter of new words are capitalized 4. Subsequent letters are lower case.

What is camel back or camel case notation?

300

When the compiler performs the type conversion.

What is implicit conversion?

300

A built in function that tells us the number of characters in a string. 

What is .size() or .length()?

300

A mathematical expression that contains only this type of variable will ignore decimal values.

What is an int?

300

The C++ category name for numeric data that contains a decimal point.

What is floating point?

300

Another name for the primary storage of a computer.

What is RAM or Random Access Memory or Main Memory?

400

When the programmer performs the type conversion.

What is explicit conversion?

400

Typically a blank, tab or newline character – it terminates input to through cin.

What is whitespace?

400

A repeatable sequence of numbers.

What is pseudo random?

400

The name of the variable on the left side of an assignment operator.

What is an lvalue?

400

The input operator that removes characters from the input stream which were placed there by the user’s keyboard.

What is the stream extraction operator?

500

The fancy function to convert one data type to another.

What is static_cast<>()?

500

The syntax of the function used to get string input that may have whitespace included.

What is getline(source, targetStringVariable)?

500

A starting value used to generate a sequence of pseudo random numbers.

What is a seed?

500

A named location in memory used to hold data values.

What is a variable?

500

Tells the compiler to include some other code before it does its job.

What is a preprocessor directive?