Most computers have a few high-speed storage areas called ____.

a. registers
b. static
c. CPU memory
d. external memory


a. registers

Computer Science & Information Technology

You might also like to view...

Here is a collection of while and do-while statements. Identify: i. those that are correct, and are likely to give the programmers intent; ii. those that are correct, but unlikely to give the programmer's intent, and iii. what compiler error will the rest generate?

``` a) cin >> n; while (-1 != n) { sum = 0; sum = sum + n; } b) cin >> value; while ( value != -1 ) sum = sum + value; cin >> value; c) cin >> n; int i = 1, >>Semicolon not comma while ( i < n ); sum = sum + i; i++; d) cin >> count >> limit; do count++ while ( count ??count > limit ); e) cin >> x; dox++; while( x > x ); ```

Computer Science & Information Technology

In ____ you can use any character you like without worrying about it being misinterpreted.

A. PCDATA B. CDATA C. MAINDATA D. PDATA

Computer Science & Information Technology

Which of the following is TRUE about point size as related to a font?

A) The larger the point size, the larger the font B) The smaller the point size, the less distance between font characters C) The smaller the point size, the more distance between font characters D) Point size is not related to font size.

Computer Science & Information Technology

When using trap-and-trace, the trace usually consists of a honeypot or padded cell and an alarm. _________________________

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

Computer Science & Information Technology