Adric wants to store files on optical media. Which storage media would be the cheapest and have a maximum capacity of 700MB?

A) DVD-RW
B) CD-R
C) Blu-Ray
D) IEEE 1496

B

Computer Science & Information Technology

You might also like to view...

Consider the statement below:

StringBuilder sb1 = new StringBuilder("a toyota"); Which of the following creates a String object with the value "toy"? a. String res = sb1.subString(2, 5); b. char dest[] = new char[sb1.length()]; sb1.getChars(2, 5, dest, 0); String res = new String(dest); c. char dest[] = new char[sb1.length]; dest = sb1.getChars(2, 5); String res = new String(dest); d. char dest[] = new char[sb1.length()]; dest = sb1.getChars(0, 3); String res = new String(dest);

Computer Science & Information Technology

Program ____________________ is the process of updating software so it continues to be useful.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology