For which of the following is the spelling, disk, used?

A. magnetic media
B. CDs
C. DVDs
D. optical media


Answer: A

Computer Science & Information Technology

You might also like to view...

An advantage of inheritance is that:

a. All methods can be inherited. b. All instance variables can be uniformly accessed by subclasses and superclasses. c. Objects of a subclass can be treated like objects of their superclass. d. None of the above.

Computer Science & Information Technology

What is wrong in the following code?

``` #include using namespace std; class TempClass { public: int i; TempClass() { int i = 5; } }; int main() { TempClass temp(2); } ``` a. The program compiles fine, but it does not run because class C is not public. b. The program has a compilation error because TempClass does not have a default constructor. c. The program compiles and runs fine. d. The program has a compilation error because TempClass does not have a constructor with an int argument.

Computer Science & Information Technology

double[] as = new double[7];double[] bs;bs = as;How many objects are present after the code fragment in the accompanying figure is executed?

A. 1 B. 2 C. 7 D. 14

Computer Science & Information Technology

How do you represent the hexadecimal value A in binary?

A. 1110 B. 1011 C. 1100 D. 1010

Computer Science & Information Technology