Difficulty: Easy
Correct Answer: Portions of the operating system are copied from disk into memory
Explanation:
Introduction / Context:
Starting a computer, known as booting or booting up, is something we do every day, but many users do not know what happens internally. When you press the power button, several low level processes occur before the familiar desktop appears. This question tests your understanding of what happens to the operating system during the boot process, especially how it is loaded into memory so that it can control the computer hardware and run applications.
Given Data / Assumptions:
Concept / Approach:
When a computer boots, a small program stored in firmware (such as BIOS or UEFI) runs first. This firmware performs basic hardware checks and then looks for a bootable device. Once it finds the operating system files on disk, it loads the essential parts of the operating system kernel and supporting components into RAM. Only after key portions of the operating system are copied from disk into memory can the system start managing hardware, launching services and displaying the user interface. Therefore, the correct description is that parts of the operating system are copied from disk into memory during boot.
Step-by-Step Solution:
Verification / Alternative check:
Technical documentation on operating systems describes the boot sequence as a chain of loading programs from one storage location into memory. BIOS or UEFI firmware loads a bootloader, the bootloader loads the kernel, and the kernel then starts system processes. At each stage, code is read from storage and placed into RAM because the CPU can execute instructions only from memory, not directly from disk. No standard description of booting involves copying the operating system from memory onto disk or compiling it from source each time you start the machine. This confirms that the action described in the correct option matches real behaviour.
Why Other Options Are Wrong:
Common Pitfalls:
Students sometimes think of disk and memory as similar and may not clearly distinguish between permanent storage and temporary working space. Another confusion arises between booting and installing; during installation, larger amounts of data may be written to disk, but during boot, code is mainly read from disk into memory. To avoid mistakes, remember that the CPU needs instructions in RAM to execute them. So, at boot, the core idea is always loading, or copying code from long term storage into main memory.
Final Answer:
When you boot up a PC, the main action is that portions of the operating system are copied from disk into memory so that they can run.
Discussion & Comments