Memory Management Flashcards

1
Q

What is the primary function of memory management in Layer 3?

A

It ensures that processes and data are in primary memory (PM) for operation, manages competition for finite memory resources, and protects co-resident processes from one another

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

Define Virtual Address

A

A virtual address is relative to the start of a process’s address space and not the actual physical memory location

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

What is the difference between compile-time, load-time, and execution-time binding?

A
  • Compile-time, memory addresses are fixed at compile time
  • Load-time, addresses are determined when the program loads into memory
  • Execution-time, addresses can change dynamically during execution
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the three main goals when multiple programs share memory?

A

Transparency, safety, and efficiency

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

What is the difference between static and dynamic relocation?

A
  • Static Relocation, memory mapping is done before or during process loading and cannot be moved afterward
  • Dynamic Relocation, memory mapping is done at runtime, allowing processes to move freely in memory
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is external fragmentation?

A

It occurs when total memory is sufficient to satisfy a request, but it’s not contiguous

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

What are the advantages of paging?

A
  • Simplifies memory allocation
  • Eliminates external fragmentation
  • Allows processes to use memory efficiently through logical segmentation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How does segmentation differ from paging?

A
  • Segmentation divides memory into variable-sized logical segments
  • Paging divides memory into fixed-sized blocks and removes the need for contiguous memory allocation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Memory allocation policies first fit?

A

Allocate the first hole that is big enough
- First fit and best fit usually yield better storage utilisation
- First fit is generally faster than best fit

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

Memory allocation policies best fit?

A

Allocate the smallest hole that is big enough
- Must search entire list, unless ordered by size
- Produces the smallest leftover hole

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

Memory allocation policies worst fit?

A

Allocate the largest hole
- Must also search entire list
- Produces the largest leftover hole

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

Memory allocation policies next fit?

A

Spread the allocations out more evenly across the memory space

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

Difference between a physical address and a virtual address?

A
  • Physical address, is the actual location int eh computer’s memory hardware (RAM) where data or instructions are stored
  • Virtual address, is an address used by a program or process to reference memory (abstraction)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Hardware support needed for a paged virtual memory

A
  • Memory Management Unit (MMU)
  • Translation Lookaside Buffer (TLB)
  • Page table
  • Support for paging, fixed size pages (frames)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Difference between internal fragmentation and external fragmentation

A
  • Internal fragmentation, wasted memory that occurs inside allocated memory blocks because the allocated memory is slightly larger than the requested memory
  • External fragmentation, wasted memory that occurs outside allocated memory blocks because free memory is divided into small, non-contiguous chunks, making it difficult to allocate to processes even if the total free memory is sufficient
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Advantages of virtual memory

A
  • Efficient use of physical memory, dynamic allocation and optimal utilisation
  • Memory isolation and protection
  • Support for multitasking, concurrency and efficient context switching
17
Q

Disadvantages of virtual memory

A
  • Performance overload, slower access and page faults
  • Increased complexity
  • Resource usage
  • Thrashing (system runs out of physical memory and has to swap pages excessively between RAM and disk
18
Q

What is relocation?

A

The ability to move process around in memory without it affecting its execution

19
Q

What is paging?

A
  • Divides and assigns processes to fixed sized pages
  • Selectively allocate pages to frames in memory
  • Manages pages in memory
20
Q

What is segmentation?

A

Partition an address space into logical units with a segment number (mapped to a segment base address), and an offset from the beginning of that segment