Basics 4 Flashcards

1
Q

Main memory divided into a number of equal size frames is the __________ technique.

A

simple paging

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

With __________ a process is loaded by loading all of its segments into dynamic partitions that need not be contiguous.

A

simple segmentations

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

The chunks of a process are known as __________ .

A

pages

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

Available chunks of memory are known as ___________ .

A

frames

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

In the Dynamic Partitioning technique of memory management, the placement algorithm that chooses the block that is closest in size to the request is called __________ .

A

best-fit

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

In the Dynamic Partitioning technique of memory management, the placement algorithm that scans memory from the location of the last placement and chooses the next available block that is large enough to satisfy the request is called __________ .

A

next-fit

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

In a system employing a segmentation scheme for memory management a process is divided into _________ .

A

a number of segments which need not be of equal size

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

The task of subdividing memory to accommodate multiple processes is carried out dynamically by the operating system and is known as ___________ .

A

memory management

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

A __________ is a variable length block of data that resides in secondary memory.

A

segment

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

A __________ is an actual location in main memory.

A

physical address (or absolute address)

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

A fixed length block of data that resides in secondary memory is a __________ .

A

page

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

When there is wasted space internal to a partition due to the fact that the block of data loaded is smaller than the partition is referred to as __________.

A

internal fragmentation

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

_________ in a computer system is organized as a linear, or one-dimensional, address space, consisting of a sequence of bytes or words.

A

Main memory

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

A _________ is a fixed length block of main memory.

A

frame

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

As time goes on, memory becomes more and more fragmented and memory utilization declines, creating a phenomenon referred to as _________ .

A

external fragmentation

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

A __________ is a reference to a memory location independent of the current assignment of data to memory.

A

logical address

17
Q

The __________ shows the frame location for each page of the process.

A

page table

18
Q

The basic tools of memory management are paging and __________ .

A

segmentation

19
Q

The address of a storage location in main memory is the __________ .

A

real address

20
Q

A _________ is issued if a desired page is not in main memory.

A

page fault

21
Q

The _________ determines when a page should be brought into main memory.

A

fetch policy

22
Q

With _________ pages other than the one demanded by a page fault are brought in.

A

prepaging

23
Q

The address assigned to a location in virtual memory to allow that location to be accessed as though it were part of main memory is the __________ .

A

virtual address

24
Q

_________ is a storage allocation scheme in which secondary memory can be addressed as though it were part of main memory.

A

Virtual memory

25
Q

The __________ policy treats the page frames allocated to a process as a circular buffer and pages are removed in round robin style.

A

first-in-first-out (FIFO)

26
Q

When the system spends most of its time swapping pieces rather than executing instructions it leads to a condition known as _________ .

A

thrashing

27
Q

To overcome the problem of doubling the memory access time, most virtual memory schemes make use of a special high-speed cache for page table entries called a __________ .

A

translation lookaside buffer (TLB)

28
Q

With __________ , a page is brought into main memory only when a reference is made to a location on that page.

A

demand paging

29
Q

The __________ policy replaces the page in memory that has not been referenced for the longest time.

A

least recently used (LRU)