Question

    Which of the following best describes the function of

    the Control Unit (CU) in the CPU?
    A Executes arithmetic and logical operations Correct Answer Incorrect Answer
    B Coordinates the activities of the processor by interpreting and directing operations Correct Answer Incorrect Answer
    C Stores data for short-term use Correct Answer Incorrect Answer
    D Manages the flow of data between the processor and external memory Correct Answer Incorrect Answer
    E Translates high-level programming languages into machine code Correct Answer Incorrect Answer

    Solution

    The Control Unit (CU) is a critical component of the CPU that oversees and regulates the operation of the entire system. Its primary function is to decode instructions from the program being executed, sending appropriate signals to other parts of the CPU to carry out the operations. For instance, it directs the Arithmetic Logic Unit (ALU) to perform calculations, controls the movement of data in and out of registers, and interfaces with memory. The CU also ensures that instructions are executed in the correct sequence and handles branching decisions for condition-based logic. This makes the CU the "brain" that orchestrates the entire process in response to a program's instructions. Why Other Options Are Incorrect :

    1. Executes arithmetic and logical operations : This function is performed by the ALU, not the CU. The ALU is specialized for operations like addition, subtraction, and logical comparisons.
    2. Stores data for short-term use : This is the responsibility of registers or cache memory, not the CU. While the CU may manage the flow of data, it does not store it.
    3. Manages the flow of data between the processor and external memory : This task is typically handled by the memory management unit (MMU) and buses in the architecture.
    4. Translates high-level programming languages into machine code : This function is performed by compilers and interpreters before the code is executed by the processor. The CU deals only with machine code instructions.

    Practice Next