C# Flashcards
The _______ structure directs the computer to process the program instructions, one after another, in the order listed.
Sequence Structure
The_______ structure alerts the computer that a decision needs to be made, and it provides the appropriate action(s) to take based om the results of that decision.
Decision Structure
The _______ structure indicates that one or more instructions need to be repeated until some condition is met.
Repetition Structure
A named location in computer memory that can hold different values at different points in time.
Variable
A named location in computer memory that cannot be changed after a program is compiled.
Constant
Describes the format and size of (amount of memory occupied by) a data item (constant or variable).
Data Type
What are the 6 steps of problem solving ?
Analyze the problem, plan the algorithm, desk-check, code the algorithm into the program, test the program, evaluate and modify (if necessary) the program.
0 to 255
Byte (Reserves 1 byte of memory)
-128 to 127
sbyte (Reserves 1 byte of memory)
-32,700 to 32,700
Short (Reserves 2 bytes of memory)
0 to 65,535
ushort (Reserves 2 bytes)
-2 billion to 2 billion
int (Reserves 4 bytes)
0 to 4 billion
uint (Reserves 4 bytes)
-9 quintillion to 9 quintillion
long (Reserves 8 bytes)
0 to 18 quintillion
ulong (Reserves 8 bytes)