SSC CGL Exam  >  SSC CGL Tests  >  SSC CGL Tier 2 - Study Material, Online Tests, Previous Year  >  Test: Cache Memory- 1 - SSC CGL MCQ

Test: Cache Memory- 1 - SSC CGL MCQ


Test Description

20 Questions MCQ Test SSC CGL Tier 2 - Study Material, Online Tests, Previous Year - Test: Cache Memory- 1

Test: Cache Memory- 1 for SSC CGL 2024 is part of SSC CGL Tier 2 - Study Material, Online Tests, Previous Year preparation. The Test: Cache Memory- 1 questions and answers have been prepared according to the SSC CGL exam syllabus.The Test: Cache Memory- 1 MCQs are made for SSC CGL 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for Test: Cache Memory- 1 below.
Solutions of Test: Cache Memory- 1 questions in English are available as part of our SSC CGL Tier 2 - Study Material, Online Tests, Previous Year for SSC CGL & Test: Cache Memory- 1 solutions in Hindi for SSC CGL Tier 2 - Study Material, Online Tests, Previous Year course. Download more important topics, notes, lectures and mock test series for SSC CGL Exam by signing up for free. Attempt Test: Cache Memory- 1 | 20 questions in 60 minutes | Mock test for SSC CGL preparation | Free important questions MCQ to study SSC CGL Tier 2 - Study Material, Online Tests, Previous Year for SSC CGL Exam | Download free PDF with solutions
Test: Cache Memory- 1 - Question 1

A file system uses an in-memory cache to cache disk blocks. The miss rate of the cache is shown in the figure. The latency to read a block from the cache is 1 ms and to read a block from the disk is 10 ms. Assume that the cost of checking whether a block exists in the cache is negligible. Available cache sizes are in multiples of 10 MB.


The smallest cache size required to ensure an average read latency of less than 6 ms is ______ MB.

Detailed Solution for Test: Cache Memory- 1 - Question 1

Detailed Solution

 Download Solution PDF

Data:

Cache latency = T1 = 1 ms

Main memory latency = T2 = 10 ms

Average read latency = Tavg

Formula:

Tavg = H1T1 + (1 – H2) (T1 + T2)

Since, cost of checking whether a block exists in the cache is negligible

Tavg = H1T1 + (1 – H2) (T2)

Calculation:

CASE 1: Cache size = 10 MB

Hit rate = T1 = 20% = 0.2

Miss rate = T2 = 80% = 0.8

 Tavg = H1T1 + (1 – H2) (T2)

= 0.2 × 1 + 0.8 × 10

= 8.2 ms > 6 ms

CASE 2: Cache size = 20 MB

Hit rate = T1 = 40% = 0.4

Miss rate = T2 = 60% = 0.6

Tavg = H1T1 + (1 – H2) (T2)

= 0.4 × 1 + 0.6 × 10

= 6.4 ms > 6 ms

CASE 3: Cache size = 30 MB

Hit rate = T1 = 60% = 0.6

Miss rate = T2 = 40% = 0.4

Tavg = H1T1 + (1 – H2) (T2)

= 0.6 × 1 + 0.4 × 10

= 4.6 ms < 6 ms

Hence, smallest cache size required to ensure an average read latency of less than 6 ms is 30 MB.

Test: Cache Memory- 1 - Question 2

A block-set associative cache memory consists of 128 blocks divided into four block sets. The main memory consists of 16,384 blocks and each block contains 256 eight bit words.

  1. How many bits are required for addressing the main memory?
  2. How many bits are needed to represent the TAG, SET and WORD fields?


Detailed Solution for Test: Cache Memory- 1 - Question 2

1 Crore+ students have signed up on EduRev. Have you? Download the App
Test: Cache Memory- 1 - Question 3

The access times of the main memory and the Cache memory, in a computer system, are 500 n sec and 50 n sec, respectively. It is estimated that 80% of the main memory request are for read the rest for write. The hit ratio for the read access only is 0.9 and a write-through policy (where both main and cache memories are updated simultaneously) is used.
Determine the average time of the main memory.


Detailed Solution for Test: Cache Memory- 1 - Question 3

Average memory access time = Time spend for read + Time spend for write= Read time when cache hit + Read time when cache miss+Write time when cache hit + Write time when cache miss= 0.8 ⨯ 0.9 ⨯ 50 + 0.8 ⨯ 0.1 ⨯ (500+50) (assuming hierarchical read from memory and cache as only simultaneous write is mentioned in question)+ 0.2 ⨯ 0.9 ⨯ 500 + 0.2 ⨯ 0.1 ⨯ 500 (simultaneous write mentioned in question)= 36 + 44 + 90 + 10 = 180 ns

Test: Cache Memory- 1 - Question 4

The principle of locality justifies the use of

Detailed Solution for Test: Cache Memory- 1 - Question 4

It is D.
Locality of reference is actually the frequent accessing of any storage location or some value. We can say in simple language that whatever things are used more frequently, they are stored in the locality of reference. So we have cache memory for the purpose.

Test: Cache Memory- 1 - Question 5

A computer system has a 4 K word cache organized in block-set-associative manner with 4 blocks per set, 64 words perblock. The number of bits in the SET and WORD fields of the main memory address format is:

Detailed Solution for Test: Cache Memory- 1 - Question 5

Number of sets = 4K /(64*4) = 16. So, we need 4 bits to identify a set => SET = 4 bits.
64 words per block means WORD is 6 bits.
So, (D)

Test: Cache Memory- 1 - Question 6

A computer system has a three level memory hierarchy, with access time and hit ratios as shown below:

 

A. What should be the minimum sizes of level 1 and 2 memories to achieve an average access time of less than 100 nsec
B. What is the average access time achieved using the chosen sizes of level 1 and level 2 memories?


Detailed Solution for Test: Cache Memory- 1 - Question 6


Here
and  On substituting the a,b for the first case we get

T = 95ns for a = 0.8 and b = 0.995. i.e., L1 = 8M and L2 = 64M.

T = 75ns for a = 0.9 and b = 0.99. i.e., L1 = 16M and L2 = 4M

b.

Test: Cache Memory- 1 - Question 7

For a set-associative Cache organization, the parameters are as follows:

Calculate the hit ratio for a loop executed 100 times where the size of the loop is n x b and n = k x m is a non-zero integer and 1 < m ≤ l.
Give the value of the hit ratio for l = 1


Detailed Solution for Test: Cache Memory- 1 - Question 7

Size of the loop = n × b = k × m × b

Size of a set = k × b (k − way associative)

Here, size of the loop is smaller than size of a set as . Now, however be the mapping (whether all be mapped to the same set or not), we are guaranteed that the entire loop is in cache without any replacement.
For the first iteration:

No. of accesses = n × b

No. of misses = n  as each new block access is a miss and loop body has blocks each of size for a total size of .
For, the remaining 99 iterations:

No. of accesses = n × b

No. of misses = 0

So, total no. of accesses = 100nb
Total no. of hits = Total no. of accesses − Total no. of misses
= 100nb − n
So, hit ratio = 

The hit ratio is independent if l, so for l = 1 also we have hit ratio = 1- 

Test: Cache Memory- 1 - Question 8

The main memory of a computer has 2 cm blocks while the cache has 2c blocks. If the cache uses the set associativemapping scheme with 2 blocks per set, then block k of the main memory maps to the set

Detailed Solution for Test: Cache Memory- 1 - Question 8

Number of cache blocks = 2c
Number of sets in cache = 2c/2 = c since each set has 2 blocks. Now, a block of main memory gets mapped to a set (associativity of 2 just means there are space for 2 memory blocks in a cache set), and we have 2cm blocks being mapped to c sets. So, in each set 2m different main memory blocks can come and block k of main memory will be mapped to k
mod c.

Test: Cache Memory- 1 - Question 9

More than one word are put in one cache block to

Detailed Solution for Test: Cache Memory- 1 - Question 9

exploit the spatial locality of reference in a program as, if the next locality is addressed immediately, it will already be in the cache.
Consider the scenario similar to cooking, where when an ingredient is taken from cupboard, you also take the near by ingredients along with it- hoping that they will be needed in near future.

Test: Cache Memory- 1 - Question 10

A CPU has 32-bit memory address and a 256 KB cache memory. The cache is organized as a 4-way set associative cache with cache block size of 16 bytes.
a. What is the number of sets in the cache?
b. What is the size (in bits) of the tag field per cache block?
c. What is the number and size of comparators required for tag matching?
d. How many address bits are required to find the byte offset within a cache block?
e. What is the total amount of extra memory (in bytes) required for the tag bits?


Detailed Solution for Test: Cache Memory- 1 - Question 10

What is the number of sets in the cache?
Number of sets = Cache memory/(set associativity * cache block size)
= 256KB/(4*16 B)
= 4096
What is the size (in bits) of the tag field per cache block?
Memory address size = 32-bit
Number of bits required to identify a particular set = 12 (Number of sets = 4096)
Number of bits required to identify a paticular location in cache line = 4 (cache block size = 16)
size of tag field = 32 -12 -4 = 16-bit
What is the number and size of comparators required for tag matching?

We use 4-way set associate cache. So, we need 4 comparators each of size 16 bits

How many address bits are required to find the byte offset within a cache block?
Cache block size is 16 byte. so 4 bits are required to find the byte offset within a cache block.
What is the total amount of extra memory (in bytes) required for the tag bits?
size of tag = 16 bits
Number of sets = 4096
Set associativity = 4
Extramemory required to store the tag bits = 16 * 4096 * 4 bits = 218 bytes

Test: Cache Memory- 1 - Question 11

In a C program, an array is declared as float A[2048]. Each array element is 4 Bytes in size, and the starting address of the array is 0x00000000. This program is run on a computer that has a direct mapped data cache of size 8 Kbytes, with block (line) size of 16 Bytes.
a. Which elements of the array conflict with element A[0] in the data cache? Justify your answer briefly.
b. If the program accesses the elements of this array one by one in reverse order i.e., starting with the last element and ending with the first element, how many data cache misses would occur? Justify your answer briefly. Assume that the data cache is initially empty and that no other data or instruction accesses are to be considered.


Detailed Solution for Test: Cache Memory- 1 - Question 11

(a)
Data cache size = 8KB.
Block line size = 16B.
Since each array element occupies 4B, four consecutive array elements occupy a block line (elements are aligned as
starting address is 0)
Number of cache blocks = 8KB/16B = 512. Number of cache blocks needed for the array = 2048/4 = 512. So, all the array
elements has its own cache block and there is no collision.
We can also explain this with respect to array address. Starting address is 0x00000000 = 0b0000..0 (32 0's). Ending
address is 0x00001FFF = 0b0000..0111111111111 (4*2048 = 8192 location).
Here, the last 4 bits are used as OFFSET bits and the next 9 bits are used as SET bits. So, since the ending address is not
extending beyond these 9 bits, all cache accesses are to diff sets.
(b) If the last element is accessed first, its cache block is fetched. (which should contain the previous 3 elements of the
array also since each cache block hold 4 elements of array and 2048 is and exact multiple of 4). Thus, for every 4
accesses, we will have a cache miss => for 2048 accesses we will have 512 cache misses. (This would be same even if we
access array in forward order).

Test: Cache Memory- 1 - Question 12

Consider a small two-way set-associative cache memory, consisting of four blocks. For choosing the block to be replaced,use the least recently used (LRU) scheme. The number of cache misses for the following sequence of block addresses is8, 12, 0, 12, 8

Detailed Solution for Test: Cache Memory- 1 - Question 12

We have 4 blocks and 2 blocks in a set => there are 2 sets. So blocks will go to sets as follows:

since the lowest bit of block address is used for indexing into the set.
So, 8, 12 and 0 first miss in cache with 0 replacing 8 (there are two slots in each set due to 2-way set) and then 12 hits in
cache and 8 again misses. So totally 4 misses.

Test: Cache Memory- 1 - Question 13

Consider a system with 2 level cache. Access times of Level 1 cache, Level 2 cache and main memory are 1 ns, 10 ns, and500 ns, respectively. The hit rates of Level 1 and Level 2 caches are 0.8 and 0.9, respectively. What is the average accesstime of the system ignoring the search time within the cache?

Detailed Solution for Test: Cache Memory- 1 - Question 13

By default we consider hierarchical access - because that is the common implementation and simultaneous access cache has great practical difficulty. But here the question is a bit ambiguous -- it says to ignore search time within the cache - usually search is applicable for an associative cache but here no such information given. So, may be they are telling to
ignore the search time for L1 and just consider the time for L2 for an L1 miss and similarly just consider memory access time for L2 miss. This is nothing but simultaneous access.
Access time for hierarchical access

Access time for simultaneous access

Both options in choice - :O

Test: Cache Memory- 1 - Question 14

Consider a fully associative cache with 8 cache blocks (numbered 0-7) and the following sequence of memory block requests:
4, 3, 25, 8, 19, 6, 25, 8, 16, 35, 45, 22, 8, 3, 16, 25, 7
If LRU replacement policy is used, which cache block will have memory block 7?

Detailed Solution for Test: Cache Memory- 1 - Question 14

When 45 comes, the cache contents are 4 3 25 8 19 6 16 35
LRU array (first element being least recently used) [4 3 19 6 25 8 16 35]
So, 45 replaces 4 45 3 25 8 19 6 16 35 [3 19 6 25 8 16 35 45]
Similarly 22 replaces 3 to give
45 22 25 8 19 6 16 35 [19 6 25 8 16 35 45 22]
8 hits in cache 45 22 25 8 19 6 16 35 [19 6 25 16 35 45 22 8]
3 replaces 19 45 22 25 8 3 6 16 35 [6 25 16 35 45 22 8 3]
16 and 25 hits in cache
45 22 25 8 3 6 16 35 [6 35 45 22 8 16 25 3]
Finally 7 replaces 6, which is in block 5.

So, answer is (B)

Test: Cache Memory- 1 - Question 15

Consider a direct mapped cache of size 32 KB with block size 32 bytes. The CPU generates 32 bit addresses. The number ofbits needed for cache indexing and the number of tag bits are respectively,

Detailed Solution for Test: Cache Memory- 1 - Question 15

Number of blocks = cache size/block size = 32KB/32 = 1024 bytes. So, indexing requires 10 bits. Number of OFFSET bits required to access 32 bit block = 5. So, number of TAG bits = 32 - 10 - 5 = 17. So, answer is (A).

Test: Cache Memory- 1 - Question 16

Consider a 2-way set associative cache memory with 4 sets and total 8 cache blocks (0-7) and a main memory with 128 blocks (0-127). What memory blocks will be present in the cache after the following sequence of memory block references if LRU policy is used for cache block replacement. Assuming that initially the cache did not have any memory block from the
current job?
0 5 3 9 7 0 16 55

Detailed Solution for Test: Cache Memory- 1 - Question 16

128 main memory blocks are mapped to 4 sets in cache. So, each set maps 32 blocks each. And in each set there is place for two blocks (2-way set).
Now, we have 4 sets meaning 2 index bits. Also, 32 blocks going to one set means 5 tag bits.
Now, these 7 bits identify a memory block and tag bits are placed before index bits. (otherwise adjacent memory references- spatial locality- will hamper cache performance)
So, based on the two index bits (lower 2 bits) blocks will be going to sets as follows:

Since, each set has only 2 places, 3 will be throw out as its the least recently used block. So, final content of cache will be
0 5 7 9 16 55
(C) choice.

Test: Cache Memory- 1 - Question 17

Consider two cache organizations. First one is 32 kb 2-way set associative with 32 byte block size, the second is of same size but direct mapped. The size of an address is 32 bits in both cases . A 2-to-1 multiplexer has latency of 0.6 ns while a k - bit comparator has latency of

k/10 ns The hit latency of the set associative organization is hwhile that of direct mapped is h2
.
The value of h1 is:

Detailed Solution for Test: Cache Memory- 1 - Question 17

Cache size is 32 KB and cache block size is 32 B. So,


So, number of index bits needed = 9 ( since 29 = 512). Number of offset bits = 5 (since 25 = 32 B is the block size and assuming byte addressing). So, number of tag bits = 32 - 9 - 5 = 18 (as memory address is of 32 bits).
So, time for comparing the data = Time to compare the data + Time to select the block in set = 0.6 + 18/10 ns = 2.4 ns.
(Two comparisons of tag bits need to be done for each block in a set, but they can be carried out in parallel and the succeeding one multiplexed as the output).

Test: Cache Memory- 1 - Question 18

Consider two cache organizations. First one is 32 kb 2-way set associative with 32 byte block size, the second is of same size but direct mapped. The size of an address is 32 bits in both cases . A 2-to-1 multiplexer has latency of 0.6 ns while a k - bit comparator has latency of

k/10 ns The hit latency of the set associative organization is hwhile that of direct mapped is h2
.
The value of h1 is:

Detailed Solution for Test: Cache Memory- 1 - Question 18

Test: Cache Memory- 1 - Question 19

A CPU has a 32 KB direct mapped cache with 128 byte-block size. Suppose A is two dimensional array of size with elements that occupy 8-bytes each. Consider the following two C code segments, P1 and P2.
P1:
for (i=0; i<512; i++)
{
for (j=0; j<512; j++)
{
x +=A[i] [j];
}
}
P2:
for (i=0; i<512; i++)
{
for (j=0; j<512; j++)
{
x +=A[j] [i];
}
}
P1 and P2 are executed independently with the same initial state, namely, the array A is not in the cache and i, j, x are in registers. Let the number of cache misses experienced by P1 be M1 and that for P2 be M2.
The value of M1 is:

Detailed Solution for Test: Cache Memory- 1 - Question 19

Code being C implies array layout is row-major.
When A[0][0] is fetched, 128 consecutive bytes are moved to cache. So, for the next 128/8 -1= 15 memory references
there won't be a cache miss. For the next iteration of i loop also the same thing happens as there is no temporal locality in the code. So, number of cache misses for P1
= (512/16) × 512
= 32 × 512
= 214 = 16384


Hence, answer = option C

Test: Cache Memory- 1 - Question 20

A CPU has a 32 KB direct mapped cache with 128 byte-block size. Suppose A is two dimensional array of size with elements that occupy 8-bytes each. Consider the following two C code segments, P1 and P2.
P1:
for (i=0; i<512; i++)
{
for (j=0; j<512; j++)
{
x +=A[i] [j];
}
}
P2:
for (i=0; i<512; i++)
{
for (j=0; j<512; j++)
{
x +=A[j] [i];
}
}
P1 and P2 are executed independently with the same initial state, namely, the array A is not in the cache and i, j, x are in
registers. Let the number of cache misses experienced by P1 be M1 and that for P2 be M2.
The value of the ratio 

Detailed Solution for Test: Cache Memory- 1 - Question 20

Number of Cache Lines


In 1 Cache Line

 

P


P2


    

It is so because for
P1 for every line there is a miss, and once a miss is processed we get 16 elements in memory. So another miss happens after 16 elements.
for
P2 for every element there is a miss coz storage is row major order(by default) and we are accessing column wise.
Hence, answer = option B

1365 videos|1312 docs|1010 tests
Information about Test: Cache Memory- 1 Page
In this test you can find the Exam questions for Test: Cache Memory- 1 solved & explained in the simplest way possible. Besides giving Questions and answers for Test: Cache Memory- 1, EduRev gives you an ample number of Online tests for practice

Top Courses for SSC CGL

Download as PDF

Top Courses for SSC CGL