in CO and Architecture reopened by
1,641 views
3 votes
3 votes

In designing a computer's cache system, the cache block (or cache line) size es an important parameter. Which one of the following statements is correct in this context?

  1. Smaller block size incurs lower cache miss penalty.
  2. Smaller block size implies better spatial locality.
  3. Smaller block size implies smaller cache tag.
  4. Smaller block size implies lower cache hit time.
in CO and Architecture reopened by
by
1.6k views

4 Comments

0
0

https://gateoverflow.in/2009/gate2014-2-43

most of the paper was copied.

0
0

if they didnot copy then you cannot solve even 30 question in 90 minutes.

3
3
So there is no point in solving more than that in 90 mins .

first they will decide to give questions in bulk then they will decide how they gonna manage these many questions. so best way is to copy

 

and even if copying atleast copy ans too ..
2
2

1 Answer

1 vote
1 vote

Option A is correct. To service a miss, we'd have to introduce the block in the cache. Smaller the block size, smaller is the service time.

Option B is incorrect. Spatial locality would be the neighbouring pages of a page. The larger the block size, the more neighbours it could take in.

Option C is incorrect. If the block offset field is reduced, Tag field would expand.

Option D is incorrect. The hit time solely depends on the comparators.

Answer:

Related questions