Match the type of data with the correct location B stack Sel
Match the type of data with the correct location
(B) stack
| Select One | Match With |
| Uninitialized global variables | (A) data section |
| Initialized global variables | (B) stack |
| program instructions | (C) BSS |
| automatic local variables | (D) heap |
| persistent local or non-local variables | (E) text section |
| (F) memory mapped I/O region |
Solution
data section - persistent local or non-local variables
stack - automatic local variables
BSS - Uninitialized global variables
text section - Initialized global variables
memory mapped I/O region - program instructions
