Refer to the exhibit. How many physical disks are detected by the kernel, and what are their sizes?
Correctly matches the output sizes in GiB.
Why this answer
The kernel has detected two physical disks: /dev/sda with a capacity of 10.0 GiB and /dev/sdb with a capacity of 2.00 GiB. This is evident from the output of `fdisk -l`, which lists disk devices and their sizes in gibibytes (GiB), a binary-based unit where 1 GiB = 1024^3 bytes. The kernel enumerates SCSI/SATA disks as /dev/sdX, and the output shows exactly two such devices.
Exam trap
The trap here is that candidates often confuse binary units (GiB) with decimal units (GB) and incorrectly convert the displayed sizes, or they overlook the second disk (sdb) because they focus only on the first line of output.
How to eliminate wrong answers
Option B is wrong because it incorrectly reports sizes in gigabytes (GB, decimal) instead of gibibytes (GiB, binary); the `fdisk -l` output explicitly shows '10.0 GiB' and '2.00 GiB', not '10.7 GB' and '2.15 GB' (which would be the decimal equivalents). Option C is wrong because there is no evidence of a third disk; the output lists only sda and sdb, and any 'unknown device' would still appear as a /dev/sdX entry if detected by the kernel. Option D is wrong because it claims only one disk (sda) exists, ignoring the clearly listed sdb device with its size.