CS 150 ch 2
implicit
When a value of one data type is automatically changed to another data type, a(n) ____________________ type coercion is said to have occurred.
programming
____________________ is the process of planning and creating a program.
enumeration
The ____________________ type is C++ 's method for allowing programmers to create their own simple data types
predefined
____________________ functions are those that have already been written and are provided as part of the system.
semantic
____________________ rules determine the meaning of instructions.
precision
The maximum number of significant digits is called the ____________________.
long long
The memory space for a(n) ____________________ data value is 64 bytes.
token
The smallest individual unit of a program written in any language is called a(n) ____________________.
simple
A data type is called ____________________ if the variable or named constant of that type can store only one value at a time.
subprogram
A(n) ____________________ is a collection of statements, and when it is activated, or executed, it accomplishes something.
variable
A(n) ____________________ is a memory location whose contents can be changed.
string
A(n) ____________________ is a sequence of zero or more characters.
constant
In C++, you can use a(n) ____________________ to instruct a program to mark those memory locations in which data is fixed throughout program execution
white spaces
In a C++ program, ____________________ are used to separate special symbols, reserved words, and identifiers.
comments
____________________ can be used to identify the authors of the program, give the date when the program is written or modified, give a brief explanation of the program, and explain the meaning of key statements in a program.