Computer Science I / Processor, Memory, and Buses
Practice question · True or false

Storing instructions and data in one memory is what makes a stored-program computer able to treat a program as data, the property compilers and loaders depend on.

Hints
  1. Ask what a compiler is doing when it writes a program.
  2. A compiler's output is data to the compiler and instructions to the CPU.
Show the answer

True

Why

True. The single memory is what lets a compiler emit a program as ordinary bytes, a loader place it, and a debugger inspect it. The cost is the von Neumann bottleneck, one bus carrying both, which is why caches split into separate instruction and data paths internally while keeping one address space.

Read the lesson: Processor, Memory, and Buses →

Practise Processor, Memory, and Buses

The app has 6 more questions on this lesson, and keeps your place in the course. Computer Science I is free to start.

More questions on Processor, Memory, and Buses