https://github.com/mananpatel06/operating-system-practical
This is Operating System (CE354) practical.
https://github.com/mananpatel06/operating-system-practical
algorithm algorithms best-fit-algorithm ce354 depstar first-fit-algorithm firstcomefirstserve firstinfirstout least-recently-used-algorithm optimal-algorithm practicals priority-scheduling round-robin shortest-job-first shortestjobfirst worst-fit-algorithm
Last synced: 3 days ago
JSON representation
This is Operating System (CE354) practical.
- Host: GitHub
- URL: https://github.com/mananpatel06/operating-system-practical
- Owner: mananpatel06
- Created: 2022-09-21T18:45:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-21T19:03:54.000Z (over 3 years ago)
- Last Synced: 2025-02-25T15:32:11.417Z (over 1 year ago)
- Topics: algorithm, algorithms, best-fit-algorithm, ce354, depstar, first-fit-algorithm, firstcomefirstserve, firstinfirstout, least-recently-used-algorithm, optimal-algorithm, practicals, priority-scheduling, round-robin, shortest-job-first, shortestjobfirst, worst-fit-algorithm
- Language: C
- Homepage:
- Size: 98.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OS-Practical
This is Operating System (CE354) practical.
Output.pdf contain all the output screenshot of algorithms.
Write a C program in LINUX to implement Process scheduling algorithms and compare.
A. First Come First Serve (FCFS) Scheduling (fcfs.c)
B. Shortest-Job-First (SJF) Scheduling (sjf.c)
C. Priority Scheduling (Non-preemption) after completion extend on Preemption. (priority.c)
D. Round Robin(RR) Scheduling (rr.c)
Simulate Following Page Replacement Algorithms.
A. First In First Out Algorithm (f_in_f_out.c)
B. Least Recently Used Algorithm (least_recently.cpp)
C. Optimal Algorithm (optimal.c)
Write a C program in LINUX to perform Memory allocation algorithms and Calculate Internal and External Fragmentation.
A. First Fit (first_fit.c)
B. Best Fit (best_fit.c)
C. Worst Fit (worst_fit.c)