Commit e672b91
Changed files (1)
doc
doc/assignment2.md
@@ -1,9 +1,5 @@
# Assignment 2 - Computer Science 314: Operating Systems
-This assignment should be submitted after you have completed Unit 2. It is worth 10% of your final grade for this course.
-
-Instructions: Please answer the following questions in complete sentences. Your answer for each question should be about 150 words. (100 marks total)
-
1. Define short-term scheduler and long-term scheduler, and explain the main differences between them. (6 marks)
* long-term scheduler: selects processes from the job pool and loads them into memory for execution
@@ -224,7 +220,7 @@ Instructions: Please answer the following questions in complete sentences. Your
A sequence of processes is a safe sequence when each resources that each process needs to request can be satisfied by the
currently available resources that each process needs. If this cannot be satisfied then the system state is said to be unsafe.
-## Sources:
+## Sources
* [Geeks for Geeks][geeks-for-geeks]
* [Operating System Concepts][os-book]