What are the two disk storage types supported by Windows Server 2016 and how do they differ?

What will be an ideal response?


Windows Server 2016 supports two essential disk storage types: basic disks and dynamic disks. A basic disk is one that uses traditional disk management techniques and contains primary partitions, extended partitions, and logical drives. A dynamic disk is one that does not use traditional partitioning. Dynamic disk architecture provides more flexibility than basic disks so there is virtually no restriction on the number of volumes that can be on one disk.

Computer Science & Information Technology

You might also like to view...

What is output in the GUI by the following Visual Basic code segment?

Dim temp As Integer temp = 180 While temp <> 80 If temp > 90 Then resultLabel.Text = "This porridge is too hot! " ' cool down If temp > 150 Then temp = temp - 100 Else temp = temp - 20 End If ElseIf temp < 70 Then resultLabel.Text = "This porridge is too cold! " ' warm up If temp > 150 Then temp = temp + 30 Else temp = temp + 20 End If End If End While If (temp = 80) Then resultLabel.Text = "This porridge is just right! " End If a) This porridge is too cold! This porridge is just right! b) This porridge is too hot! This porridge is just right! c) This porridge is just right! d) None of the above.

Computer Science & Information Technology

The constructor function's return type is

a. int b. float c. char d. structure pointer e. None of these

Computer Science & Information Technology

The _____ schema design element declarations can only be used once.

A. Russian Doll B. Venetian Blind C. Flat Catalog D. Garden of Eden

Computer Science & Information Technology

Inheritance indicates a/an ____________ relationship.

(a) Is-a (b) Has-a (c) both A & B (d) none of the above

Computer Science & Information Technology