Multitasking Operating System Last Updated : 30 Apr, 2025 Comments Improve Suggest changes Like Article Like Report Multitasking in operating systems allows multiple tasks to run in an concurrent (or interleaved) manner, enhancing system performance. Multiprogramming ensures that the CPU (a very fast device) is used by other processes when one process becomes busy with IO (very slow compared to CPU). Multitasking further enhances multiprograamming by allocating fixed slot to each process ready to execute. It mainly runs processes in round robin manner. We mainly try to make the best utilization of our main resource which is CPU (by allowing processes to run in an interleaved manner (one process gets CPU for a partial time and then other process gets CPU). Apart from CPU utilization, it also improves user experience as the system becomes more responsive and interactive, hence allows user to do multiple tasks. Multitasking Operating SystemTypes of Multi-Tasking Operating System1. Preemptive Multitasking Operating System In preemptive multitasking, the operating system can interrupt a running process and allocate the CPU to another process.The operating system decides how long a process should run before switching to another process.Preemption ensures that no single process monopolizes the CPU, improving system responsiveness.Examples include Windows 95, WindowsNT, Linux and UNIX-based operating systems.Advantages:Efficient CPU utilization by running multiple tasks concurrently.Better system responsiveness and user experience.Allows higher-priority processes to take precedence over lower-priority ones.Disadvantages:Context switching overhead, which can reduce performance.Complexity in process synchronization and management.Can lead to starvation if lower-priority processes are never allocated CPU time.2. Cooperative/Non-Preemptive Multitasking Operating SystemIn non-preemptive multitasking, also known as cooperative multitasking, the OS does not initiate context switching from one process to another.A context switch occurs only when processes voluntarily yield control or are logically blocked.Processes cooperate to allow multiple applications to run simultaneously, ensuring the system operates smoothly.Examples include older versions of Macintosh OS (8.0-9.2.2) and Windows 3.x.Advantages:Simpler to implement compared to preemptive multitasking.Lower overhead from context switching.Processes have more control over their execution.Disadvantages:Less efficient CPU utilization due to lack of automatic task switching.Risk of system unresponsiveness if a process fails to yield control.Difficult to manage real-time task priorities.For more details you can refer Difference between Preemptive and Cooperative Multitasking article.Components of Multi-Tasking Operating SystemTime Sharing: In this, many processes are allocated with resources of computer in respective time slots, processors time is shared with multiple processes.Context Switching: Context switching is a process of saving the context of one process and loading the context of another process. In simpler terms it is loading another process when the prior process has finished its execution.Multi-Threading: Multithreading is the ability of a program or an operating system to enable more than one user at a time without requiring multiple copies of the program running on the computer.Hardware Interrupt: When a process or an event requires urgent attention, hardware or software will signal with an interrupt. It informs the processor that a high-priority task has arisen that necessitates interrupting the running process.Process Scheduling: It is the operating system mechanism that allocates CPU time to processes based on scheduling algorithms.Process Synchronization: ensures coordinated access to shared resources, preventing conflicts between processes.Pros of Multi-Tasking Operating SystemMulti-Tasking Operating System is capable of executing multiple application simultaneously without slowing down the system.Each process is assigned specific length of time(i.e time sharing), hence a process does not have to wait for longer duration to utilize CPU. Starvation of process is not found in these operating system.A multitasking OS can effectively manage I/O devices, RAM, hard disks, CPUs and other computer resources.In Multi-Tasking Operating a user is capable of executing multiple programs at the same time, such as games, browser, MS Word and other services.Memory management is well-defined in multitasking operating systems. Because of this, the operating system does not grant any permission for unwanted apps to waste RAM.Cons of Multi-Tasking Operating SystemAs a single processor is executing multiple processes at the same time then there will be load on CPU and CPU may gets heat up.Computer system will be lagging if the processor is slow in Multi-Tasking Operating System while executing multiple programs simultaneously. Main memory(RAM) have to store multiple processes during multi tasking so there can be memory boundation if the main memory is overloaded. Comment More infoAdvertise with us Next Article Multitasking Operating System D darkknight006 Follow Improve Article Tags : Operating Systems OS Basics Similar Reads Multithreading in Operating System A thread is a path that is followed during a programâs execution. The majority of programs written nowadays run as a single thread. For example, a program is not capable of reading keystrokes while making drawings. These tasks cannot be executed by the program at the same time. This problem can be s 7 min read Multiprogramming in Operating System As the name suggests, Multiprogramming means more than one program can be active at the same time. Before the operating system concept, only one program was to be loaded at a time and run. These systems were not efficient as the CPU was not used efficiently. For example, in a single-tasking system, 5 min read Multi-User Operating System An operating system is software that acts as an interface between the user and the computer hardware which does multiple functions such as memory management; file management and processor management. The operating system should have to meet the requirements of all its users in a balanced way so that 5 min read IoT Operating Systems An Operating System is a software program software that manages and controls all the resources in a computer, together with the hardware and the software program. A running system is chargeable for controlling, dealing with, and coordinating all the sports and resources in a computer. An operating m 13 min read Interactive Operating System Interactive operating systems are computers that accept human inputs. Users give commands or some data to the computers by typing or by gestures. Some examples of interactive systems include MS Word and Spreadsheets, etc. They facilitate interactive behavior. Mac and Windows OS are some examples of 5 min read Like