A CD-R is ____.

A. rewritable
B. recordable
C. read-only
D. pre-recorded


Answer: B

Computer Science & Information Technology

You might also like to view...

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

1. A method’s changes to a variable that is passed by value do not affect the value of the original variable. 2. Keyword Val is used to pass an argument by value. 3. Passing arguments by reference can weaken security because the called method can modify the caller’s data.

Computer Science & Information Technology

In the accompanying figure, item 3 points to the ____________________.

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

Computer Science & Information Technology

The output of this Java program will be:

Consider the class below: ``` public class Test { public static void main(String[] args) { int[] a = {99, 22, 11, 3, 11, 55, 44, 88, 2, -3}; int result = 0; for (int i = 0; i < a.length; i++) { if (a[i] > 30) { result += a[i]; } } System.out.printf("Result is: %d%n", result); } } ``` a. Result is: 280. b. Result is: 286. c. Result is: 154. d. Result is: 332.

Computer Science & Information Technology

A class houses the ________ that perform the class’s tasks.

a. methods. b. functions. c. procedures. d. None of the above.

Computer Science & Information Technology