Here are the answers for the questions you've provided:
Question 1
Which of the following is a benefit of RAM not being bound to sequential access of data?
- It takes just about the same amount of time to retrieve data from one part of RAM as another.
Question 2
Which of the following is NOT a fact about the stack?
- The stack operates as FIFO ("first in, first out").
(The stack operates as LIFO - "last in, first out".)
Question 3
Which of the following is NOT a fact about the heap?
- A heap is ordered, sequential, and smaller than a stack.
(The heap is typically unordered and may be larger than the stack.)
Question 4
Which of the following is a Primitive Data Type in Python?
- number
(The options provided include incorrect primitives like 'null', 'char', which do not exist in Python as primities. The primitive data types in Python typically include integers, floats, strings, and booleans. However, "number" is a general term that encompasses these types.)
If you have any more questions or need further clarification, feel free to ask!