differentiate between scheduling &sequencing of tasks as used in operating system
Answers
Explanation:
sequencing is the other of tasks to be done in chain. Hence the next hours is started once the previous one is completed. Scheduling is on the other hand is a process in which people are desired to time to accomplish different tasks.
Answer:
Scheduling refers to the process of determining the order in which processes or tasks are executed on a computer system's CPU. The scheduling algorithm used by the operating system decides which process should run next, and how long it should be allowed to run before being preempted by another process. The goal of scheduling is to optimize system performance, minimize wait times, and ensure that all processes are executed fairly.
Sequencing, on the other hand, refers to the order in which the steps or subtasks within a process are executed. Sequencing is typically defined by the program itself and is not managed by the operating system. The goal of sequencing is to ensure that the steps of a task are executed in the correct order and that the results of each step are properly passed on to the next step
Explanation: