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.

Computer Science & Information Technology

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

Computer Science & Information Technology

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.

Computer Science & Information Technology