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
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
A(n) ____ effect specifies how a slide replaces the previous slide during a presentation.
A. animation B. transition C. graphic D. video
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
In a recursive solution, the ______ terminates the recursive processing.
a. local environment b. pivot item c. base case d. recurrence relation