Which electronic backup method stores frequently accessed data on faster media and less frequently accessed data on slower media?
A. electronic vaulting
B. hierarchical storage management
C. remote journaling
D. tape vaulting
B
Explanation: Hierarchical storage management (HSM) stores frequently access data on faster media and less frequently accessed data on slower media.
You might also like to view...
An object is a(n) ________ of a class.
A) example B) copy C) instance D) attribute E) member
Line 5 – What numbers will be generated?
```1 int numList[1000]; 2 srand(123); 3 for(int i = 0; i<1000; i++) 4 { 5 numList[i] = rand()%1000 +5; 6 cout << numList[i]; 7 }``` A. 5 through 1000 B. 0 through 1004 C. 5 through 1004 D. compiler error – there should be a number in the parentheses for rand()
Critical Thinking QuestionsCase A-1Ever since the first time David lost an important document due to a power outage, he has been fanatical about saving his work. Currently, he is creating a Photoshop document for an important client, and his deadline is looming. If he lost the document now, he'd never be able to meet the deadline and he'd probably be fired. David's client is an advertising firm that will be using his document for a big printing job. As this is a draft of the final production piece, he has been asked to e-mail the document when it has been completed so that the board can approve it before the printing begins. Which file format should he use to send the document to the board?
A. .png B. .bmp C. .jpeg D. .pct
If a function’s program logic and operations are identical for each data type it could receive as argument(s) then a __________ should be used.
a. Overloaded function. b. Recursive function. c. Macro. d. Function template.