-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (98 loc) · 4.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" type="text/css" href="lib/bootstrap.css">
<link rel="stylesheet" type="text/css" href="lib/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="lib/aos.css">
<script type="text/javascript" src="lib/aos.js"></script>
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="lib/jquery.color.js"></script>
<script type="text/javascript" src="lib/randomColor.js"></script>
</head>
<body>
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<div class="nav-title">
<a href="" target="_blank"> CPU Scheduling</a>
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<a href="https://Patel-Muhammad.github.io/FCFS-Scheduling/" target="_blank">FCFS</a>
<a href="https://Patel-Muhammad.github.io/SJF-Scheduling/" target="_blank">SJF</a>
<a href="https://Patel-Muhammad.github.io/SRTF-Scheduling/" target="_blank">SRTF</a>
<a href="https://Patel-Muhammad.github.io/Priority-Scheduling/" target="_blank">Priority Scheduling</a>
</div>
</div>
<section>
<video playsinline autoplay muted loop poster="polina.jpg" id="bgvid">
<source src="bg.mkv" type="video/webm">
<source src="bg.mkv" type="video/mp4">
</video>
</section>
<div class="container">
<div class="card">
<div class="box">
<div class="content">
<h2>01</h2>
<h3>FCFS</h3>
<p>First Come First Served (FCFS) is the simplest and non-preemptive scheduling algorithm. In First
Come First Served (FCFS), the process is allocated to the CPU in the order of their arrival.</p>
<a href="https://www.geeksforgeeks.org/program-for-fcfs-cpu-scheduling-set-1/" target="_blank">Read More</a>
<a href="https://Patel-Muhammad.github.io/FCFS-Scheduling/" target="_blank">FCFS</a>
</div>
</div>
</div>
<div class="card">
<div class="box">
<div class="content">
<h2>02</h2>
<h3>SJF</h3>
<p>In SJF, jobs are put into the ready queue as they come. Although a process
with short burst time begins, the current process is removed or preempted from execution, and
the job which is shorter is executed 1st.</p>
<a href="https://www.geeksforgeeks.org/program-for-shortest-job-first-or-sjf-cpu-scheduling-set-1-non-preemptive/" target="_blank">Read More</a>
<a href="https://Patel-Muhammad.github.io/SJF-Scheduling/" target="_blank">SJF</a>
</div>
</div>
</div>
<div class="card">
<div class="box">
<div class="content">
<h2>03</h2>
<h3>SRTF</h3>
<p>Shortest remaining time, also known as shortest remaining time first (SRTF), is a scheduling
method that is a preemptive version of shortest job next scheduling.</p>
<a href="https://www.geeksforgeeks.org/introduction-of-shortest-remaining-time-first-srtf-algorithm/" target="_blank">Read More</a>
<a href="https://Patel-Muhammad.github.io/SRTF-Scheduling/" target="_blank">SRTF</a>
</div>
</div>
</div>
<div class="card">
<div class="box">
<div class="content">
<h2>04</h2>
<h3>Priority Scheduling</h3>
<p>In this,
scheduler chooses the tasks to work as per the priority, which is different from other types of
scheduling, for example, a simple round robin.</p>
<a href="https://www.geeksforgeeks.org/priority-cpu-scheduling-with-different-arrival-time-set-2/" target="_blank">Read More</a>
<a href="https://Patel-Muhammad.github.io/Priority-Scheduling/" target="_blank">Priority Scheduling</a>
</div>
</div>
</div>
</div>
</body>
</html>