Operating Systems Fundamentals Flashcards

1
Q

What is an Operating System (OS)?

A

An OS manages hardware and software resources, acting as an intermediary between users and computer hardware.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the main objectives of an operating system?

A

Convenience
Efficiency
Ability to Evolve

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the four key components of a computer system?

A

Hardware
Operating System
Application Programs
Users

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the main stages in the evolution of operating systems?

A

Serial Processing
Simple Batch Systems
Multiprogrammed Batch Systems
Time-Sharing Systems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is serial processing in operating systems?

A

A method where jobs are executed one after another without any overlapping.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the primary feature of a batch processing system?

A

Jobs are batched together and executed sequentially, often using a monitor to control the sequence.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is multiprogramming in an OS?

A

A technique where multiple programs are kept in memory simultaneously to maximize CPU utilization.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is time-sharing in an operating system?

A

An approach where CPU time is divided among multiple users, giving the illusion of simultaneous execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is process management in an operating system?

A

Handling the creation, scheduling, and termination of processes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the five states of a process in an OS?

A

New
Ready
Running
Waiting (Blocked)
Terminated

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a Process Control Block (PCB)?

A

A data structure in the OS that contains process-related information such as process state, program counter, and memory management information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is context switching in an OS?

A

The process of saving the state of a running process and loading the state of another process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the goal of CPU scheduling?

A

To maximize CPU utilization and system performance by selecting processes to execute.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Name three common CPU scheduling algorithms.

A

First Come, First Served (FCFS)
Shortest Job First (SJF)
Round Robin (RR)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the main drawback of FCFS scheduling?

A

It can cause a convoy effect, where short processes wait for long processes to complete.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the advantage of SJF scheduling?

A

It minimizes average waiting time, but predicting the next CPU burst is challenging.

17
Q

What is the key feature of Round Robin scheduling?

A

Each process gets a fixed time slice (quantum) to execute, improving response time.

18
Q

How does priority scheduling work?

A

Processes are executed based on priority, with higher-priority processes running first.

19
Q

What is a deadlock in an operating system?

A

A situation where two or more processes are waiting for each other to release resources, resulting in a standstill.

20
Q

How can deadlocks be prevented?

A

By ensuring that at least one of the necessary conditions (mutual exclusion, hold and wait, no preemption, circular wait) is not met.

21
Q

What is the primary goal of memory management?

A

To allocate and manage the computer’s primary memory efficiently.

22
Q

What is paging in memory management?

A

A technique where memory is divided into fixed-size pages to minimize fragmentation.

23
Q

What is virtual memory?

A

A memory management technique that gives the illusion of a larger main memory by using disk space.

24
Q

What is I/O management in an OS?

A

Managing input and output devices and the data transfer between them and the CPU.

25
Q

What is the purpose of a device driver?

A

To provide an interface between the OS and hardware devices.

26
Q

What is Direct Memory Access (DMA)?

A

A technique where data is transferred directly between I/O devices and memory without CPU intervention.

27
Q

What is a system call?

A

A request from an application to the OS to perform low-level services.

28
Q

What does file system management involve?

A

Organizing and storing files on storage devices while maintaining metadata and access control.

29
Q

What is bootstrapping in an OS?

A

The process of loading the operating system into memory when the computer is powered on.

30
Q

What is the kernel in an OS?

A

The core component that manages system resources and communication between hardware and software.

31
Q

Why use an API wrapper instead of direct system calls?

A

For portability and easier access to system functionalities.

32
Q

What are virtual machines (VMs)?

A

Software that emulates hardware to run multiple OS environments on one physical machine.

33
Q

What are the two modes in dual-mode operation?

A

User Mode and Kernel Mode - to protect the OS from malicious or faulty programs.

34
Q

What is IPC?

A

A set of techniques for exchanging data between processes.

35
Q

Why is process synchronization important?

A

To ensure that processes sharing resources do not interfere with each other.