Operating Systems and CPU Scheduling Exam Questions

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/65

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

66 Terms

1
New cards

Operating System

A program that acts as an intermediary between the user and computer hardware.

2
New cards

Component of a Computer System

A part of a computer system, such as hardware, operating system, or application programs.

3
New cards

Primary Goal of an Operating System

To keep the CPU as busy as possible.

4
New cards

Role of an Operating System

Referee, Illusionist, Glue, All of the above.

5
New cards

Referee in Operating System

Resource allocation among users and applications.

6
New cards

Illusionist in Operating System

Creating the illusion of infinite resources.

7
New cards

Glue in Operating System

Providing libraries and user interface widgets.

8
New cards

Short-term Scheduler Purpose

To select processes from the ready queue and allocate the CPU.

9
New cards

Goal of an Operating System

To simplify the execution of user programs, use computer hardware efficiently, allow sharing of hardware and software resources, All of the above.

10
New cards

Importance of Studying Operating Systems

To understand the interaction between hardware and applications, develop new applications and hardware, understand basic principles in the design of computer systems, All of the above.

11
New cards

Primary Goal of Multiprogramming in CPU Scheduling

To keep the CPU as busy as possible.

12
New cards

NOT a Scheduling Criterion

Process termination time.

13
New cards

Convoy Effect in FCFS Scheduling

Short processes are stuck behind long processes.

14
New cards

Optimal Scheduling Algorithm for Minimizing Average Waiting Time

SJF.

15
New cards

Dispatch Latency

The time it takes for the dispatcher to switch processes.

16
New cards

CPU-I/O burst cycle

The alternating phases of CPU execution and I/O wait in a process

17
New cards

Short-term scheduler

To select processes from the ready queue and allocate the CPU

18
New cards

Preemptive scheduling

Scheduling where a process can be interrupted and replaced by another process

19
New cards

Nonpreemptive scheduling

Scheduling where a process cannot be interrupted

20
New cards

Dispatcher

To switch context between processes

21
New cards

CPU scheduler

To select the next process to run

22
New cards

CPU burst distribution

To predict the length of the next CPU burst

23
New cards

Histogram of CPU-burst times

To predict the length of the next CPU burst

24
New cards

Shortest-job-first (SJF) scheduling algorithm

To execute the process with the shortest burst time first

25
New cards

Challenge of implementing SJF scheduling

Predicting the next CPU burst length

26
New cards

Round-robin (RR) scheduling algorithm

To execute each process for a small unit of CPU time

27
New cards

Time quantum in round-robin scheduling

To allocate a small unit of CPU time to each process

28
New cards

Priority scheduling algorithm

To execute processes based on their priority

29
New cards

Challenge of priority scheduling

Starvation of low-priority processes

30
New cards

Aging in priority scheduling

To increase the priority of low-priority processes over time

31
New cards

MS-DOS `dir` command

Views the contents of a directory

32
New cards

cd command

Changes the current directory

33
New cards

md command

Creates a new directory

34
New cards

rd command

Deletes a directory

35
New cards

copy command

Copies a file

36
New cards

ren command

Renames a file

37
New cards

del command

Deletes a file

38
New cards

ver command

Displays the version of MS-DOS

39
New cards

/p switch in dir command

To pause after each screen of directory list information

40
New cards

/w switch in dir command

To display the directory list in wide format

41
New cards

average waiting time for FCFS scheduling with processes P1, P2, P3 and burst times 10, 5, 8

8.33

42
New cards

average waiting time for SJF scheduling with processes P1, P2, P3, P4 and burst times 7, 4, 2, 9

5.75

43
New cards

average waiting time for FCFS scheduling with processes P1, P2, P3 and burst times 12, 3, 6

9.67

44
New cards

average waiting time for SJF scheduling with processes P1, P2, P3 and burst times 12, 3, 6

4

45
New cards

average waiting time for round-robin scheduling with processes P1, P2, P3 and burst times 24, 3, 3, and time quantum 4

12.33

46
New cards

average waiting time for priority scheduling with processes P1, P2, P3, P4, P5 and burst times 10, 1, 2, 1, 5

8.2

47
New cards

purpose of the histogram of CPU-burst times

To predict the length of the next CPU burst

48
New cards

purpose of the system bus in a computer system

To connect the CPU to I/O devices

49
New cards

Memory Controller

To manage the memory

50
New cards

CPU

To execute instructions

51
New cards

Disk Controller

To manage the disk

52
New cards

Interrupt Service Routine (ISR)

To handle interrupts

53
New cards

Interrupt Vector Table

To handle interrupts

54
New cards

Dispatcher

To select the next process to run

55
New cards

Long-term Scheduler

To select processes from the pool of suspended processes and load them into memory

56
New cards

Medium-term Scheduler

To suspend processes that are not actively using the CPU

57
New cards

Process Abstraction

To represent an instance of a program running with limited rights

58
New cards

Address Space

To represent the set of accessible addresses

59
New cards

Dual-mode Operation

To differentiate between user mode and kernel mode

60
New cards

Timer

To interrupt the CPU after a specified period

61
New cards

Memory Protection

To prevent unauthorized access to memory

62
New cards

I/O Protection

To prevent unauthorized access to I/O devices

63
New cards

System Call Interface

To provide a controlled entry point to the kernel

64
New cards

Virtual Address

To provide the illusion of separate address spaces

65
New cards

Interrupt Handling Mechanism

To handle interrupts and switch to the interrupt service routine

66
New cards

Direct Memory Access (DMA)

To transfer data directly between memory and I/O devices