Which of the following does NOT require constant refreshing?

A) DRAM
B) SDRAM
C) EDO RAM
D) SRAM


D

Computer Science & Information Technology

You might also like to view...

switch can be used to test:

a. int constants. b. float constants. c. string constants. d. all types of constants.

Computer Science & Information Technology

What will be output by the following statements?

double x = 1.23456789; cout << fixed; cout << setprecision(5) << x << endl; cout.precision(3); cout << x << endl; cout << x << endl; a. 1.2346 1.23 1.23 b. 1.23457 1.235 1.23456789 c. 1.2346 1.23 1.23456789 d. 1.23457 1.235 1.235

Computer Science & Information Technology

Dividing a large problem into several smaller problems that are easily solved is sometimes called ____________.

a. programmatic simplification b. divide and conquer c. top down design d. parallel design

Computer Science & Information Technology

Interfaces can have methods.

a. 0 b. 1 c. 2 d. any number of

Computer Science & Information Technology