The ____ contains most of the electronic circuitry in the computer.?

A. ?monitor
B. EEPROM
C. ?SRAM
D. ?system unit


Answer: D

Computer Science & Information Technology

You might also like to view...

If the subscript of a subscripted variable is not between 0 and one less than the array size:

a) there will be a syntax error b) there will be a run-time error c) the subscript will be set to zero d) a memory cell outside the array will be referenced

Computer Science & Information Technology

Which of the following views does not show link lines?

A. Gantt Chart B. Network Diagram C. Calendar D. All of the above

Computer Science & Information Technology

________ are the rules that dictate the type of data that can be entered in a cell

A) Input message B) Validation criteria C) Defined item D) Error alert

Computer Science & Information Technology

What type of search does the following function implement?bool aSearch (int list[ ], int last,int target, int* locn){   int looker;   looker = 0;   while (looker < last && target != list[looker])      looker++;   *locn = looker;   return ( target == list[looker] );}

A. sequential search B. sentinel search C. ordered list search D. binary search

Computer Science & Information Technology