OUTLINE) QUESTIONS WITH COMPLETE
SOLUTIONS!!
1 of
151
Term
what control structure results in a smooth flow of execution?
Give this one a try later!
indexed synchronous
binary sequential
, Don't know?
2 of 151
Term
are abort exceptions synchronous or nonsychronous?
Give this one a try later!
synchronous asynchronous
both asynchronous
isochronous and synchronous
Don't know?
3 of 151
Definition
typically a multiple of its largest data member size
Give this one a try later!
the size of the smallest the maximum value of a single data
data member member
, the number of elements in an array total size of a structure
Don't know?
4 of 151
Term
what is the potential problem with multiple functions using
registers?
Give this one a try later!
conflicts can occur because registers are shared. Callee and
caller must have a consistent approach for saving and restoring
register values to prevent overwriting data in registers used by
other functions
transfer execution to another location in the code (like go to).
enables selection, repetition, control flow, function calls, and returns
the first data member of a structure is closest to the top of the stack
(lowest address). the last data member is near the base of the stack
(highest address).
transfer control back to process's next instruction, possibly returning
result from service function
Don't know?
5 of 151
Definition
, jump if condition is met (based on cc of previous
instruction). Can only be direct jumps, meaning that target
address is in the instruction
Give this one a try later!
scaled jump unconditional jump
group of answer choices conditional jump
Don't know?
6 of 151
Definition
occurs when infinite recursion occur because recursive
call consumes more memory in stack
Give this one a try later!
stack underflow buffer overflow
heap overflow stack overflow
Don't know?
7 of 151