A computer ____ is the amount of data (typically measured in bits or bytes) that a CPU can manipulate at one time.

A. word
B. character
C. statement
D. unit


Answer: A

Computer Science & Information Technology

You might also like to view...

Which term describes the ability of an object to hold objects of several different types?

a. composition b. encapsulation c. information hiding d. polymorphism e. static binding

Computer Science & Information Technology

A(n) ____ effect specifies how a slide replaces the previous slide during a presentation.

A. animation B. transition C. graphic D. video

Computer Science & Information Technology

What will be displayed after the following code snippet runs?

``` function itLoops() { var m = 0; var k = 0; var p = 0; while (m < 3) { k = m; for (p = 1; p < 6; p+=3) { k = k + p; document.write(k + " "); } document.write("
"); m++; } } ``` a. 1 5 2 6 3 7 b. 0 4 1 5 2 6 c. 1 5 2 6 3 7 4 8 d. 2 6 3 7

Computer Science & Information Technology

In a recursive solution, the ______ terminates the recursive processing.

a. local environment b. pivot item c. base case d. recurrence relation

Computer Science & Information Technology