A user has two SSDs of the same size in their PC. The user wants to configure both SSDs to have a copy of all data so there will be no data loss if one drive fails. Which of the following is this an example of?
This scenario describes disk mirroring, which is RAID 1. With RAID 1, the same data is written to two drives simultaneously, creating an exact duplicate on each SSD. If one drive fails, the system can continue to operate using the remaining drive with no loss of data, which directly matches the requirement “no data loss if one drive fails.” RAID 1 is commonly used when fault tolerance and data redundancy are the priority. A key trade-off is capacity: because the data is duplicated, the usable storage is essentially the size of one of the drives (two 1TB drives in RAID 1 provide about 1TB usable). Performance can vary: read performance may improve slightly in some implementations, but write performance is generally similar to a single drive because data must be written to both drives.
RAID 0 is striping with no redundancy, so a single drive failure causes total data loss. RAID 5 requires at least three drives and uses parity. RAID 10 requires at least four drives and combines mirroring and striping. Therefore, the correct answer is RAID 1.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit