InterviewSolution
Saved Bookmarks
| 1. |
Consider an array A[999] & each element occupies 4 word. A 32 word cache is used and divided into 16 word blocks. What is the miss ratio for the following statement. Assume one block is read into cache in case of miss:for(i=0; i < 1000; i++) A[i] = A[i] + 99(A) 0.50(B) 0.75(C) 0.875(D) 0.125 |
| Answer» | |