Question:medium

Describe the life sketch and contribution of Patnam Subramanya Iyer.

Show Hint

Patnam Subramanya Iyer was so skilled in creative singing that he was often called "Begada Subramanya Iyer" due to his unparalleled mastery over the complex raga Begada.
Updated On: Jun 16, 2026
Show Solution

Solution and Explanation




Step 1: Understanding the Question:

The goal is to pinpoint the CPU scheduling algorithm among the options that is strictly non-preemptive, meaning a running process cannot be interrupted before it voluntarily yields the CPU.


Step 2: Detailed Explanation:

Let's analyze each option:
- Round Robin (RR): This is a preemptive algorithm that relies on a fixed time quantum. Processes are interrupted if they exceed their time slice.
- Shortest Remaining Time First (SRTF): As the preemptive counterpart to Shortest Job First, it interrupts the current process if a newly arrived process has a shorter burst time.
- First-Come, First-Served (FCFS): This algorithm executes processes strictly in their arrival order. Once a process is allocated the CPU, it runs to completion or blocks on its own. Hence, it is strictly non-preemptive.
- Priority Scheduling (Preemptive): The option explicitly states it is preemptive, allowing higher-priority processes to interrupt lower-priority ones.
Consequently, FCFS is the only non-preemptive choice provided.


Step 3: Final Answer:

The correct choice is (C).
Was this answer helpful?
0