0% found this document useful (0 votes)
36 views4 pages

OSY Repeated PYQ

Uploaded by

sayalimane216
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views4 pages

OSY Repeated PYQ

Uploaded by

sayalimane216
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

SAYALI MANE

OSY chapter 2 :
Sr. no Question Year
1. a) Explain any four services provided by OS. W-19
b) List and describe any four services of operating system S-22
c) State any four services of operating system S-23
d) List any four services provided by operating system W-23
e) State any four services provided by an operating system S-24

2 a) List components of OS. Explain process management in detail. W-19


b) Describe various activities performed by following operating system S-22
components.
i) Main memory management ii) File management
c) Explain different components of operating system. S-23
d) Write down the responsibilities of the following components of OS. i) W-23
Memory management ii) File management
e) Explain different components of operating system. S-24

3 a) What is purpose of system call? State any two system calls with their W-19
functions.
b) State any four types of system calls. S-22
c) Explain different types of system calls. S-23
d) What are the different types of system calls? Give examples of each. W-23
e) Explain any four types of system call. S-24

4 a) Enlist the operating system tools. Explain any two in detail. W-19
b) Describe with example, use of following tools: S-22
i) Device Management ii) Performance monitor iii) Task scheduler
c) Write two uses of following operating system tools. S-23
i) Security policy ii) User Management iii) Task scheduler
d) Write two uses of the following operating system tools W-23
i) Security policy ii) User management iii) Performance Monitor
e) Explain the use of following OS tools: S-24
i) Device Manager ii) Task Scheduler
SAYALI MANE
OSY chapter 3:
Sr. no Questions Year
1 a) Draw process state diagram W-19
b) Draw a neat labelled diagram for process state S-22
c) Draw process state diagram and describe each state S-23
d) Draw neat labelled process state diagram along with the correct directions of W-23
arrows
e) Draw process state diagram S-24

2 a) Write syntax of following commands: (i)Sleep (ii) Kill W-19


b) Explain ‘PS’ command with any four options. W-19
c) Describe use of ps and wait commands with suitable example. S-22
d) Give commands to perform following tasks: i) To add delay in script ii) To S-22
terminate a process
e) What is the use of PS command? Write long forms of UID, PID in the output of W-23
this command
f) Explain following commands with their syntax – i) Kill ii) Sleep iii) Wait iv) W-23
Exit
g) Write syntax of PWD command and explain its use with the help of suitable S-24
example

3 a) With neat diagram explain inter process communication model. W-19


b) Differentiate between shared memory system and message passing system of S-22
inter-process communication.
c) Explain the working of inter process communication considering S-23
i) Shared memory ii) Message passing
d) Explain shared memory method of IPC using neat labelled diagram W-23
e) Describe message passing system of inter process communication (IPC) S-24

4 a) Explain PCB with diagram. W-19


b) Draw and explain process control block in detail S-23
c) Define Process. Draw a Process Control Block and explain the information in S-24
PCB

5 a) State and describe types of scheduler W-19


b) Explain different types of schedulers S-23

6 a) Explain multithreading model in detail. W-19


b) Describe one-to-one multithreading model with suitable diagram. Also write S-22
any two advantages of one-to-one model over many-to-one model.
c) Differentiate between process and thread (any two points). Also discuss the W-23
benefits of multithreaded programming

7 a) With suitable diagram, describe use of scheduling queues in process scheduling. S-22

8 a) Describe how context switch is executed by operating system S-24

9 a) Explain user level thread and Kernel level thread with its advantages and S-24
disadvantages
SAYALI MANE
OSY chapter 4:
Sr. no Question Year
1 a) Explain any four scheduling criteria. W-19
b) State and describe any two scheduling criteria. S-22
c) State and explain four scheduling criteria S-23

2 a) Describe I/o burst and CPU burst cycle with neat diagram. W-19
b) Define CPU bound program and I/O bound program W-23

3 a) Explain deadlock? What are necessary conditions for deadlock? W-19


b) Describe prevention of deadlock occurrence with respect to hold and wait S-22
necessary condition.
c) Define Deadlock. S-23
d) Describe any four condition for deadlock. S-23
e) What is deadlock? Discuss any one method of deadlock prevention. W-23
f) Define deadlock. State the conditions necessary for deadlock. S-24

4 a) Explain Round Robin algorithm with suitable example. W-19


b) Write steps required for Banker’s algorithm to avoid deadlock. S-22
c) Compare Short Job First (SJF) and Shortest Remaining Time (SRTN) S-24
scheduling algorithm (any four points)
d) What is the average turnaround time for the following process using : S-24
1. FCFS scheduling algorithm
2. SJF non pre-emptive scheduling algorithm
3. Round Robin Scheduling algorithm

5 a) The jobs are scheduled for execution as follows Process Arrival Time W-19
Burst Time
P1 0 7 P2 1 4 P3 2 10 P4 3 6 P5 4 8
Solve the problem using: (i) SJF (ii) FCFS Also find average waiting
time using Gantt chart
b) Calculate average waiting time for following data using First Come First S-22
Served (FCFS) and Shortest Job First (SJF) algorithms. Process Burst
time Arrival time
P0 08 0 P1 04 1 P2 05 2 P3 03 3
c) Consider the four processes P1, P2, P3 and P4 with length of CPO Burst S-23
time. Find out Avg waiting time and Avg turn around time for the
following Algorithms.
i) FCFS ii) RR (Slice-4ms) iii) SJF
Process Arrival time Burst time
P1 0 8 P2 1 4 P3 2 9 P4 3 5
d) Solve given problem by using FCFS scheduling algorithm. Draw correct W-23
Gantt chart and calculate average waiting time and average turnaround
time –Process Arrival time Burst time
P0 0 10 P1 1 29 P2 2 3 P3 3 7 P4 4 124
SAYALI MANE
e) How pre-emptive scheduling is better than non pre-emptive scheduling W-23
by solving following problem using SJF (Solve it by using pre-emptive
SJF and non-pre-emptive SJF also).Process Arrival time Burst time
P1 0 8 P2 1 4 P3 2 9 P4 3 5

6 a) State difference between pre-emptive scheduling and non-pre-emptive W-19


scheduling.
b) Write the difference between pre-emptive and non-pre-emptive S-23
scheduling
c) State two features of non-pre-emptive scheduling S-24
d) What is CPU Scheduler? Explain the pre-emptive and non-pre-emptive S-24
type of scheduling

7 a) With neat diagram explain multilevel queue scheduling. S-23

8 a) Explain following terms with respect to scheduling W-23


i) CPU utilization ii) Throughput iii) Turnaround time iv) Waiting time

9 a) Explain working of CPU switch from process to process with neat W-23
labelled diagram.

You might also like