Answer the following statements true (T) or false (F)

1. A physical address consists of a base address and an offset from the base address.
2. In a flat memory model, the program sees a single continuous, byte addressable address
space called the linear address space.
3. In a segmented model, memory is pictured as a continuous address space.
4. In the Intel architecture, the segment selector points to the segment descriptor which holds the segment’s base address. The actual logical address is an offset within this
segment.
5. At execution time, the processor translates a logical address to a linear address by adding
the offset to the segment’s base address.


1. False
2. True
3. False
4. True
5. True

Computer Science & Information Technology

You might also like to view...

What are the keyboard shortcuts for accessing (a) the Selection tool, and (b) the Direct Selection tool?

What will be an ideal response?

Computer Science & Information Technology

Given the declaration Circle[] x = new Circle[10], which of the following statement is most accurate?

a. x contains an array of ten int values. b. x contains an array of ten objects of the Circle type. c. x contains a reference to an array and each element in the array can hold a reference to a Circle object. d. x contains a reference to an array and each element in the array can hold a Circle object.

Computer Science & Information Technology

Which of the following does not generate GUI events?

a. Typing in a text field. b. Selecting an item from a menu. c. Viewing the text in a label. d. Moving the mouse.

Computer Science & Information Technology

The ________ /No data type stores variables that can hold one of two possible values

Fill in the blank(s) with correct word

Computer Science & Information Technology