Operating Systems Final Review

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

1/104

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.

105 Terms

1
New cards

What is a network?

A bunch of computers connected together to exchange data

2
New cards

What is an IP address?

a sequence of numbers that uniquely identifies each computer or device connected to a network.

3
New cards

What does an IP address look like?

four unsigned integers ranging from 0-255 separated by dots.

Ex: 23.40.100.0

4
New cards

Why isn't an IP address alone enough for networking communications?

There are several processes running on any computer at any given time, so there needs to be something else to uniquely identify which process we want to send or receive data from.

5
New cards

How do we specify a message should be delivered to a specific program?

We specify it by using a networking port.

6
New cards

What is a networking port?

a unique identification number assigned to a program that wants to use the network

7
New cards

What are well known ports?

Ports with pre-determined purposes ranging from 0 - 1023

Ex: 80 - Web Servers (http requests)

8
New cards

What is a networking socket?

A combination of an IP address and a networking port.

9
New cards

What is a browser?

A program that displays webpages received from the internet as files

10
New cards

What is a web-server?

A server that responds to requests for webpages.

11
New cards

Does each computer have a unique IP address?

Yes

12
New cards

What is a client?

A computer that asks for services/help from other computers on the network.

13
New cards

What is a server?

A computer in the network that listens to incoming requests and replies to them.

14
New cards

What is a communication protocol?

set of standards that defines the structure of messages (TCP, IP,HTTP)

15
New cards

How does the browser know the web server's networking socket?

It uses URLs

16
New cards

What is a URL?

Uniform Resource Locator. It is the English name for a web server's IP address

17
New cards

What is DNS?

Domain Name System. It is a computer/server that receives a URL and returns the corresponding IP address.

18
New cards

What is RPC?

Remote Procedure Code.

An instrument that allows the start of functions on a server

19
New cards

How does the web server know where to reply to a browser request?

The web server will look at the networking socket that came with the initial request.

20
New cards

What is a physical address?

Addresses that are on the physical RAM device.

21
New cards

What is a logical (virtual) address?

Address that exist in a program's virtual memory (imaginary RAM memory that the program believes it has)

22
New cards

How does logical memory work?

The Operating System/hardware tells a program when it first launches that it has access to all of the memory, but it actually only has access to a specific chunk.

23
New cards

What is a Physical Address Space?

a collection of all physical addresses

24
New cards

What is a Logical Address Space?

a collection of all logical addresses of one process.

25
New cards

What is a significant difference between physical address space and logical address space?

There is only one physical address space on a computer, but there are as many logical address spaces as there are processes running on the computer.

26
New cards

What is the Memory Management Unit (MMU)?

a device that converts logical addresses into physical addresses

27
New cards

What must happen when the CPU executes an instruction with a logical address?

The CPU must communicate with the Memory Management Unit, where the logical address is converted into a physical address.

28
New cards

What is the RAM Memory Controller?

a device that allows the computer to interact with RAM.

29
New cards

What is Contiguous Memory Management?

When the operating system searches for a large enough block of contiguous memory to accommodate the process. If a suitable block is found, it is allocated to the process.

30
New cards

What is the range of logical addresses for a process that needs 10 kb of memory?

It will start at address 0 and end at address 10,000 (in binary)

31
New cards

What is a limit value?

The max amount of memory a program is given. It can change depending on the needs of the program, but once it is set, it won't change.

Ex: A program that needs 2 kb when it launches cannot exceed 2 kb in memory.

32
New cards

What is fragmentation?

A scenario in which the computer wastes RAM due to inefficient memory usage.

33
New cards

What are the two types of fragmentation?

External Fragmentation and Internal Fragmentation

34
New cards

What is external fragmentation?

When the inefficiently used memory in the RAM is unused by processes and wasted.

35
New cards

How can external fragmentation happen?

if three processes are running and the process that is physically between the other two in the RAM finishes running, it causes a memory hole of however large the process was. It becomes hard to fully utilize the memory that is left there because you would need a process that is either as big or smaller than the old process to run there.

36
New cards

What is a memory hole?

A gap of memory between two programs that remains unused due to external fragmentation.

37
New cards

What are some approaches to contiguous memory allocation (management)?

1) Best Fit - Maximizes external fragmentation (memory holes)

2) Worst Fit - Minimizes external fragmentation (memory holes)

3) First-Fit - Fast method

38
New cards

What is the "best fit" approach for contiguous memory allocation?

The OS will choose a memory hole that is closest to the size of a process that is going to run. If there is none, it will just proceed after the farthest process in the RAM. This maximizes external fragmentation (amount of memory holes).

39
New cards

What is the "worst fit" approach for contiguous memory allocation?

The OS will choose the biggest memory hole available and put the process in there. This minimizes external fragmentation (amount of memory holes).

40
New cards

What is the "first fit" approach for contiguous memory allocation?

The OS will choose the first memory hole that is large enough to fit the process. This is a fast method, but its effectiveness depends on how good of a fit the first memory hole the OS finds is.

41
New cards

What is Paging?

A technique modern computers use to split a logical address space of a process into pieces of an equal fixed size. The same happens to the physical address space.

42
New cards

What are pages?

Pieces of an equal fixed size of a logical address space.

43
New cards

What are frames?

Pieces of an equal fixed size of the physical address space.

44
New cards

What is a page table?

A table located in the Memory Management Unit that keeps track of every page number's corresponding frame number.

45
New cards

How does the MMU convert logical addresses to physical addresses when dealing with paging?

When a logical address is given to the MMU, it must figure out which page it is located in by floor-dividing the address by the page size. It then takes the modulus (remainder) of the address with the page size and uses that as the offset. The MMU looks at its page's corresponding frame in the page table and gets the base address by multiplying the frame number by the page size. Finally, it adds the offset to the base address of the frame. to get the physical address.

46
New cards

How do you get the offset for a logical address' corresponding physical address in a frame?

Take the modulus of the logical address and the page size (remainder after dividing the logical address by the page size)

47
New cards

How does the MMU figure out a logical address' page number?

It does floor-division between the logical address and the size of each page.

48
New cards

How many wires connect the CPU with the MMU?

It depends on how many bits the computer uses. It may have 32 wires corresponding to a 32-bit computer or 64 wires corresponding to a 64-bit computer.

49
New cards

Do all wires connecting the CPU to the MMU communicate with the page table?

No

50
New cards

What are all the wires that go into and out of the MMU do?

Some wires will deal with the page number, some wires will deal with the frame number, and some wires deal with the offset needed to get the physical address.

51
New cards

In binary, how do we determine the offset based on the page size?

The page size will always be a power of 2, so we take the log-base-2 of the size to get the length of the offset in binary. The offset will be the right-most n bits, where n is log(page size), of the address.

52
New cards

In binary, how do we determine the page number of an address?

After you determine the length of the offset, the page number will be the leftmost k bits of the address, where k is the length of the offset in binary subtracted from the size of the address in binary.

53
New cards

If the address length is 48 bits and the page size is 2 kb, what is the length of the offset? How many pages can the process have?

2 kb = 2048

2048 = 2^11

The 11 rightmost bits represent the offset.

The 37 rightmost bits represent the page number.

2^37 - 1 = 137438953471 possible pages

54
New cards

Given a system with logical and physical address sizes of 24 bits and page sizes of 2 kb:

1) What is the size of the page offset (in bits)?

2) What is the number of entries in a page table?

3) What physical address corresponds to the following logical address (in hexadecimal): 0x001DFA

Page Number | Frame Number

0 -> 9

1 -> 10

2 -> 11

3 -> 12

1) 2kb = 2048 B.

2048 = 2^11

So page offset is 11

2) Addresses are 24 bits, and the rightmost 11 bits are the page offset.

24-11 = 13.

2^13 = 8192

There are 8192 entries in a page table

3) 0x001DFA = 00000000 0001 1101 1111 1010

Page Number = 00000000 0001 1 = 3

Page 3 = Frame 12

Frame 12 = 0000000001100

Physical Address = 00000000 0110 0101 1111 1010 = 0x0065FA

55
New cards

What is On-Demand Paging?

All the pages are stored on the hard disk until they are needed. When a function or code is needed, then it will be copied from the hard disk and onto the RAM.

56
New cards

What is Page Fault?

A situation when a process wants to use a page that is not currently in RAM. They are performance expensive because this page now needs to be copied onto the RAM and entered into the page number.

57
New cards

Why is storing the whole page table in the MMU a bad idea?

Copying an entire page table, which can have millions of entries, would result in much slower context switching.

58
New cards

Why is the MMU using the page table straight from RAM a bad idea?

You cannot do the memory operation without the page table, so you would have to read from the RAM, then convert the logical address, then read from the RAM again, slowing the entire process down significantly.

59
New cards

What is a TLB?

Translation Lookaside Buffer.

A memory device inside the MMU that stores the most useful entries of the page table of the currently running process.

60
New cards

What is a TLB miss?

When a needed entry is not in the TLB.

61
New cards

How is a TLB miss solved?

The entry is read from the page table in RAM and added to the TLB.

62
New cards

What is a TLB hit?

When a needed entry is already in the TLB.

63
New cards

What are the advantages of using a TLB?

- You don't have to store the entire page table.

- Faster context switches

- Only have to access RAM when a TLB miss occurs.

64
New cards

What is a thread?

An independent execution of program code with its own program counter

65
New cards

Is threading exclusive to multi-core CPUs?

No. A single-core CPU can have more than one thread.

66
New cards

How do servers use threading?

One thread is listening to requests from the internet, and every time a new request is received, a new thread is executed to serve that request.

67
New cards

Why choose threads over creating a new process (forking)?

- More memory efficient (stored in process' already allocated memory)

- Faster to create and delete

- Shares memory for free

- Context switching is faster

68
New cards

Why choose processes (forks) over threads?

- You can run exec() to run a different program in the same process

- Fault independent. If a fork experiences an error, only itself will crash rather than the entire process tree.

69
New cards

Where does a thread get stored in RAM?

In the original process' chunk of memory. A new stack is created in this chunk, and it belongs to the thread. Stack overflow could occur.

70
New cards

Do threads have their own heap, text, and data sections?

No. It shares it with the process it belongs to.

71
New cards

What do threads of the same process share?

- Text section

- Data section

- Heap

72
New cards

How do you initialize a thread in C++?

#include

std::thread t1{ function() }

73
New cards

Why is getting the correct result from a race condition a problem?

A correct result gives the illusion that everything is working as intended when in reality the program has issues.

74
New cards

What is a race condition/data race?

A mistake or data corruption when one or more thread or process try to simultaneously access the same piece of memory and at least one of them try to modify it.

75
New cards

What is a critical section?

A piece of code that should not overlap in execution with other critical sections. Problems happen when they do overlap.

76
New cards

What are hardware-implemented atomic functions?

Implemented in the CPU as wires and logic gates

Functions with two properties:

1) Once it starts, it finishes. It is impossible to interrupt it.

2) Only one copy of an atomic function can run at a time.

They are basic tools that allow us to make tools to prevent race conditions.

77
New cards

What is a mutex?

A mutually exclusive access to a resource. It's a special case of a semaphore with a maximum concurrency of 1.

78
New cards

How do you use a mutex in C++?

#include

std::mutex for_glob;

for_glob.lock();

(code here)

for_glob.unlock();

79
New cards

What is a memory address? How much memory can you address with addresses of a given size (for example, 64-bit addresses)

A number that identifies a section of memory. You can have 2^64 different addresses in a 64-bit system

80
New cards

Why physical addresses are inconvenient for modern programs?

A process may not always be placed in the same chunk of memory every time, so if it is always trying to access a specific address, such as 123, it may be trying to access memory that doesn't belong to it.

In addition, if two processes of the same program try to access the exact same physical address, it could lead to memory problems.

81
New cards

What kind of address does the CPU fetch with instructions?

Logical address

82
New cards

What kind of address does the CPU send to RAM with a load/store request?

Physical address

83
New cards

What kind of address arrives to RAM with the load/store request?

Physical address

84
New cards

What is internal fragmentation?

A scenario where the allocated memory for a process is larger than the requested memory, leaving unused space within a page, wasting memory in the process

85
New cards

What kind of fragmentation does contiguous memory management suffer from?

External fragmenation

86
New cards

What kind of fragmentation does paging suffer from?

Internal fragmentation

87
New cards

How do sizes of pages and frames relate?

Page and frame sizes are the same.

88
New cards

How many page tables are there in a system?

There are as many page tables as there are running processes.

89
New cards

What are synchronization problems?

Programing problems that arise when you create multithreaded code or a program that exchanges data with other program

90
New cards

What are some examples of synchronization hazards?

Race condition and deadlock

91
New cards

What is a shared resource?

Anything that is used by multiple threads, processes, or devices

92
New cards

How can a race condition can happen?

When two threads run a critical section at the same time, want to access the same memory address, and at least one of them wants to modify it.

93
New cards

Can a race condition happen if only one party modifies the data and the others are just reading?

Yes

94
New cards

Can a race condition happen if everybody is just reading?

No

95
New cards

Explain the idea of locking shared resources.

By providing exclusive access to shared resources to one thread at a time, you can prevent race conditions where one or more thread reads from memory and at least one thread writes to that same memory.

96
New cards

What does it mean if the function is hardware implemented?

There is no program code for it, no general CPU instructions written in memory. The function is implemented with hardware circuitry and called with a single special CPU instruction.

97
New cards

What does the join() function do?

It pauses the thread and it waits for another thread to terminate before continuing

98
New cards

What does a process do if it needs a mutex that is busy?

it pauses somehow and waits for mutex to be free again before proceeding further

99
New cards

What is a Producer-Consumer problem (a.k.a. Bounded Buffer problem)?

There is a producer, which is a thread that produces something such as video frames.

There is thread of processes called consumer, which consumes whatever useful item that is produced.

The Producer-Consumer problem involves programming a producer and consumer so that if a producer creates an item and there is no space on the shared buffer (array), then the producer waits. If there are no items in the shared buffer, then the consumer waits.

100
New cards

What is a Readers-Writers problem?

There are processes/threads wanting to read from a shared piece of data, and there are some that want to write to that data.