



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
These are the Old Exam of Operating Systems which includes Secrecy of Users, Passwords, Environmental Variable Path, Partitioning a Disk, Criteria for File Organisation etc. Key important points are: Process Control Block, Command Interpreter, Central Role, Process Control Block, Context Switch, Semaphore Object, Using Pseudocode, Mutual Exclusion Problem, Synchronisation Problems, Deadlock
Typology: Exams
1 / 5
This page cannot be seen from the preview
Don't miss anything!




(NFQ - Level 7)
Answer ANY FOUR questions. All questions carry equal marks.
Examiners: Ms. M. Meagher Ms. A. Brown Mr. P. Rothwell.
(b) At any time a process may be ‘blocked’, ‘suspended’ or ‘ready’. Define each of these states and give a simple example of when a process may enter each state. [3 marks] Summarise the typical contents of a process control block (PCB). [3 marks] Briefly explain what the PCB is used for. [2 marks]
(c) Outline the steps involved in a process switch. [4 marks] Briefly distinguish between a process switch and a context switch. [3 marks] [Total: 25 marks]
void wait( ) { //complete this }//end wait method
void signal ( ) { //complete this } //end signal method } //end class semaphore [4 marks]
Based on the code given, briefly explain the semaphore object. [2 marks]
(b) Several proposed software and hardware solutions to the mutual exclusion problem involve ‘busy waiting.’ Explain ‘busy waiting’ in this context. Fully explain how the use of a semaphore avoids the ‘busy waiting’ problem. [4 marks] Using pseudocode, explain how a semaphore can be used to solve the general mutual exclusion problem. [4 marks] Clearly indicate the semaphore’s initial value and justify your choice. [2 marks]
(c) Fully describe the producer/consumer problem. In the context of your description clearly explain the mutual exclusion and synchronisation problems. [9 marks] [Total: 25 marks]
(b) Assuming memory is managed using a paged virtual memory management scheme, outline the notion of a page fault and list and briefly describe the steps involved in the page fault handling routine. [8 marks]
(c) Briefly explain and comment upon each of the following characteristics that may be taken into account in the choice of a victim page when replacing a page in virtual memory management: recency, age, frequency, modify/dirty bit. [8 marks] [Total: 25 marks]
(b) For the following disk track request queue, diagram and calculate the head movement required under TWO of the following disk scheduling algorithms. Request queue: 27 129 110 186 147 41 10 64 120 Where necessary assume that the disk head is initially at track 100, is moving toward track 0, and maximum track number is 200. [6 marks] (i) First-in First-out; (ii) C-Scan; (iii) Look. For both algorithms chosen, briefly discuss their fairness and efficiency. [4 marks]
(c) Fully describe the three methods of disk space allocation: contiguous, linked (or chained), and indexed. [6 marks] With the aid of a diagram, fully describe (^) the method of disk space allocation used in UNIX. Include a brief discussion^ of its advantages and disadvantages in your description. [7 marks] [Total: 25 marks]