Which of the following is a partial backup that backs up files that have changed since the last full or incremental backup?

A. differential
B. sequential
C. incremental
D. binary


Answer: C

Computer Science & Information Technology

You might also like to view...

A value or expression that provides input to a function is called a(n)

a. prompt b. conversion c. argument d. insertion operation

Computer Science & Information Technology

Why are recursive functions an important tool in programming?

What will be an ideal response?

Computer Science & Information Technology

A ____image is a digital image in which each pixel can be one-and only one-of 256 shades of gray.

A. black-and-white B. color C. grayscale D. none of the above

Computer Science & Information Technology

int puzzle(int start, int end){  if (start > end)     return start - end;  else if (start == end)     return start + end;  else     return end * puzzle(start + 1, end - 1);} Consider the accompanying definition of a recursive function. What is the output of the following statement?cout << puzzle(5, 10) << endl;

A. 720 B. 5040 C. 5760 D. 10800

Computer Science & Information Technology