Which backup method allows for easy full-system restorations (no shuffling through tapes with partial backups on them)?
A. RAID
B. The Towers of Hanoi
C. Grandfather-Father-Son (GFS)
D. Six-tape rotation
Answer: B
Computer Science & Information Technology
You might also like to view...
The process of breaking a problem down into smaller pieces is sometimes called __________.
a. the divide and conquer method b. the scientific method c. top-down programming d. whole-into-part programming
Computer Science & Information Technology
Assume that the following method header is for a method in class A.
``` public void displayValue(int value) Assume that the following code segments appear in another method, also in class A. Which contains a legal call to the displayValue method? ``` a. int x = 7; void displayValue(x); displayValue(int x); b. int x = 7; displayValue(x); c. int x = 7; d. int x = 7; displayValue(x)
Computer Science & Information Technology