CS 430/530 Quiz
Name____________________ Possible points: 10 Earned points : ____
Note: the numbers in parentheses indicate the points you can earn for each question. Those with only 1 point are right or wrong (no part credit).
A reserved word is a special word
that cannot be used as a user-defined name
the range of values of variables and the set of operations that are defined for values
of that
type; in the case of floating point, type also determines the
precision
Language
design time --e.g., bind operator symbols to
operations
Language
implementation time --e.g., bind floating point
type to a representation
Compile
time --e.g., bind a variable to a type in C or
Java
Load time --e.g., bind a FORTRAN 77 variable to a memory cell (or a C static
variable)
Runtime --e.g., bind a nonstatic local variable to a memory cell
A binding is static if it first occurs
before run time and remains unchanged throughout
program execution.
The nonlocal variables of a program
unit are those that are visible but not declared there
NOTE:
they are not necessarily visible throughout the entire program.