The number of bits that can travel simultaneously down a bus is known as the bus ________.
A. length
B. width
C. lines
D. expandability
Answer: B
You might also like to view...
__________ inheritance solves the problem of duplicate subobjects.
a. protected b. virtual c. const d. static
What is the value of X in the following expression?
```Set X = Str(-685.23)``` a. 685 b. -685 c. “-685.23” d. “685.23”
Linked lists are used in
a. double hashing b. linear probing c. quadratic probing d. separate chaining e. all of the above
What is the output of the following program?
``` public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; int v = values[0][0]; for (int[] list : values) for (int element : list) if (v > element) v = element; System.out.print(v); } } ``` a. 1 b. 3 c. 5 d. 6 e. 33