Answer the following statements true (T) or false (F)
1. Under Windows XP, memory counts against the process’s 2 GB limit as soon as it is
reserved.
2. A striped volume is not fault tolerant because the failure of a disk leads to a complete loss
of information stored on the disk.
3. Windows XP supports FAT, FAT 32 and its native NTFS file system.
4. NTFS (the Windows NT file system) allocates a disk volume’s space in clusters, where a
cluster is one or more (generally, a power of 2) contiguous sectors.
5. A Windows XP 32-bit virtual address is split into two parts: an index to the page
directory and a displacement on the page.
1. F
2. T
3. T
4. T
5. F
You might also like to view...
When a subject-oriented search engine groups sites by topic, each group is called a(n) ________
Fill in the blank(s) with correct word
There can be only one _______________ in a Java source-code file, and it must precede all other declarations and statements in the file.
Fill in the blank(s) with the appropriate word(s).
A requirement that all employees take time off from work, which allows the organization to audit the individual's areas of responsibility, is known as a mandatory vacation policy. __________
Answer the following statement true (T) or false (F)
What is the value of ANSWER after the instructions corresponding to the following pseudocode are executed?
``` COUNT = 5 SUM = 100 DOUNTIL COUNT < 5 SUM = SUM + 5 COUNT = COUNT - 1 ENDDO ANSWER = SUM ``` a) 5 b) 100 c) 105 d) 125