This project involves implementing several different processscheduling algorithms. The scheduler will be assigned a predefinedset of tasks and will schedule the tasks based on the selectedscheduling algorithm. Each task is assigned a priority and CPUburst.
The following scheduling algorithms will be implemented:
1. First-come, first-served (FCFS), which schedules tasks in theorder in which they request the CPU.
2. Shortest-job-first (SJF), which schedules tasks in order ofthe length of the tasks’ next CPU burst.
3. Priority scheduling, which schedules tasks based onpriority.
4. Round-robin (RR) scheduling, where each task is run for atime quantum (or for the remainder of its CPU burst).
5. Priority with round-robin, which schedules tasks in order ofpriority and uses round-robin scheduling for tasks with equalpriorit
This project involves implementing several different process scheduling algorithms. The scheduler will be assigned a pre
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am