Part III: Function Tracing and Output Order Flashcards

1
Q

Call Stack

A

The structure that tracks function calls, local variables, and return addresses in memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Pass by Value vs. Pass by Reference

A

Pass by Value: A copy of the argument is passed to the function.
Pass by Reference: A reference to the argument is passed, allowing modification of the original variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Base Address of an Array

A

The memory address of the first element of an array.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Pointer to an Array

A

A pointer variable that stores the address of an array’s first element and can be used for iteration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Output Order in a Function Call

A

The order in which output statements execute, considering recursion, loops, and function calls.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Code:

A

void func(int* p) {
*p = 20;
}
int main() {
int x = 10;
func(&x);
cout &laquo_space;x;
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly