After a new disk has been installed and a partition table has been written, it appears in Disk Management as a basic disk. Windows Server 2012 R2 enables youto create a new partition (also called a simple volume) from the free space on a new or existing disk. This partition can be a primary, extended, or _______volume
a. Static
b. Dynamic
c. Physical
d. Logical
D. A single basic disk can contain up to four primary partitions or three primary partitions plus an extended partition; the extended partition can contain anynumber of logical drives.
You might also like to view...
Which one of the following strategies has been the most successfully adapted to mobile development?
a. Intent development b. Fragment-based methods c. Waterfall development d. Iterative methods
Which of the following two versions of the class declarations is correct?
``` Version I: class A { public: A() { } private: A* a; int i; }; Version II: class A { public: A() { } private: A a; int i; }; ``` a. Both versions are correct. b. Both versions are wrong. c. Version II is correct. d. Version I is correct.