A system which uses a set of constants represented by identifiers
Back
Concatenate
Front
To tack together two strings of characters, making one longer string
Back
Prompt
Front
A question or demand the program asks the user
Back
Immutable
Front
unchangeable; C# strings are this quality
Back
Unary operator
Front
An operator with one value
Back
Constant
Front
Cannot be changed after a program is compiled
Back
Format specifier
Front
a string that contains special characters specifying how the numeric value should be formatted; examples: currency ($X,XXX.XX), number (X,XXX.XX), scientific (X.XXXe+xxx)
Back
Order of operation
Front
Operates from left to right
Back
Variable declaration
Front
Statement that names a variable and reserves storage
Back
Assignment operator
Front
the equal sign in an assignment statement
Back
Data Type
Front
Describes the format and size of a data item
Back
Initialization
Front
Assigning a value to a variable as part of its definition
Back
Explicit cast
Front
Involves placing the desired result type in parentheses followed by the variable or constant
Back
Implicit cast
Front
The automatic transformation that occurs when a value is assigned to a type with higher precedence
Back
Precision specifier
Front
Controls the number of significant digits or zeros to the right of the decimal point