C Programming Practice Question Consider a cache that is def
C Programming Practice Question:
Consider a cache that is defined as {8, 1.4.13). If the contents of the cache are as follows, with all numbers given in What byte, if any. is returned by the address 0x0E36? 18 E0 results in a cache miss 4B 07Solution
The answer is D) 4B
This is because the address is 0x0E36
we will start from the top and consider all values of tag, valid, byte0,byte1,byte2, byte3
The 1st position is 09, the second postion is 1, this keeps going on
The 36th position is 4B. The element present at the address .Therefore this is the given answer.over here.
