A ____ is approximately 1,000 bytes.

A. kilobyte (KB)
B. megabyte (MB)
C. gigabyte (GB)
D. terabyte (TB)


Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following DoS security categories specifies that the TCB protection system should be mandatory, not discretionary?

A) Category A B) Category B C) Category C D) Category D

Computer Science & Information Technology

Referring to the picture above, which of the following layouts prints blank lines to the right of each slide?

A. 3 slides B. 2 slides C. 4 slides D. 6 slides

Computer Science & Information Technology

A linked structure can be stored in noncontiguous memory.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

If you are accessing each of the elements of a two dimensional array with 6 rows and 15 columns, which of the following would be a possible correct loop header(s)?

a) for (int r = 0; r < 5; r++) for (int c = 0; c < 14; c++) b) for (int r = 0; r <= 6; r++) for (int c = 0; c <=15; c++) c) for (int r = 0; r < 6; r++) for (int c = 0; c < 15; c++) d) for (int r = 0; r < 90; r++)

Computer Science & Information Technology