The __________ cache is slower and typically larger than the L2 cache.

A. L1
B. L2
C. L3
D. L4

C. L3

Computer Science & Information Technology

You might also like to view...

What does the following method do?

``` // Parameter b must be positive to prevent infinite recursion static int Mystery(int a, int b) { if (b == 1) { return a; } else { return a + Mystery(a, b - 1); } } ```

Computer Science & Information Technology

The first code written for an event should be ____ code.

A. assignment B. comment C. enabling D. disabling

Computer Science & Information Technology