Solutions To Set 7
Solutions To Set 7
Solutions To Set 7
SOLUTIONS
Explanation:
(c)
(a) giving program versatility to user by providing facilities as a pointer to memory counters for
loop control
(b) reducing number of bits in the field of instruction
(c) specifying rules for modifying or interpreting address field of the instruction
(d) All of the above
Explanation:
(d)
1
Computer uses addressing mode technique for giving program versatility to user by providing
facilities as a pointer to memory counters for loop control and to reduce number of bits in the
field of instruction. Addressing modes are used in specifying rules for modifying or interpreting
address field of the instruction.
3. Which of the following is added to the page table in order to track whether a page of cache has
been modified since it was read from the memory?
Explanation:
(b)
Dirty bit is used to represent the status of cache whether it has been defined after copying from
main memory to cache. Dirty bit = 0 shows no modification and dirty bit = 1 shows
modification.
4. Match List-I with List-II and select the correct answer using the codes given below the lists:
List-I List-II
Codes:
A B C
(a) 1 2 3
(b) 3 2 1
(c) 1 3 2
(d) 2 3 1
2
Explanation:
(c)
Pointer stores the address of a variable and indirect addressing mode stores address of effective
address in instruction.
Position independent code makes use of relocation concept which is implemented by the use of
relative addressing mode which uses relocation register to set the difference of logical and
physical address.
Immediate addressing mode provides the value directly in the instruction which is suitable to be
used for constant operands of the program.
5. A 50 kbps device is connected to the processor. The interrupt overhead is 50 μsec. The
minimum performance achieved when interrupt initiated and data transferred is used instead of
programmed I/O is __________.
Explanation:
(b)
1 sec → 50 kbyte
1
1 byte → 50𝑘 = 20 × 10−6 𝑠𝑒𝑐 = 20 𝜇𝑠𝑒𝑐
MBR ‹ PC
MAR ‹ SP
3
M[MAR] ‹ MBR
PC ‹ Vector address.
Explanation:
(c)
PC holds the value of next instruction to be executed. We store the value of PC to MBR and
value of stack pointer to MAR. Then store the value of PC which is available in MBR to location
addressed by MAR.
Atleast vector address return to the PC. This can be done in interrupt subprogram initialization.
7. We have two designs P1 and P2 for a synchronous pipeline processor. P1 has 8 pipeline stages
with execution time of 3 nsec, 2 nsec, 4 nsec, 8 nsec, 2 nsec, 5 nsec, 4 nsec and 1 nsec while
design P2 has 5 stages each with 5 nsec each with 5 nsec execution time. How much time (in
μsec) can be saved using design P2 over design P1 for executing 500 instructions? (upto 3 digit).
Explanation:
(c)
P1 = [8 + 500 – 1] × 8 = 4056
P2 = [5 + 500 – 1] × 5 = 2520
4
8. In which of the following addressing mode, the content of the program counter is added to the
address part of the instruction to get the effective address?
Explanation:
(c)
In relative addressing mode content of the program counter is added to the address part of the
instruction to get the effective address.
9. Suppose that a cache is 20 times faster than main memory and cache memory can be used
80% of the time. The speed-up factor that can be achieved by using the cache is __________.
Explanation:
(d)
10. If the last operation performed on a computer with an 8-bit word has an addition in which the
two operands were 00000010 and 00000011, what would be the value of the Overflow, Sign and
Half-Carry flags respectively?
(a) 0, 0, 0 (b) 0, 1, 0
(c) 1, 0, 1 (d) 0, 1, 1
Explanation:
5
(a)
00000010
00000011
-----------------------
00000101
-----------------------
Half carry indicate addition of packed decimal numbers. When carry takes out of the lower digit
order, this flag is set. Auxiliary carry is also known as half carry.
11. A 4 byte long PC-relative branch instruction is fetched from memory address 51210 and while
its execution, the branch is made to location 88510. What is the unsigned displacement present
in the instruction? (relative value)
Solution: 369
Explanation:
(369)
6
I3 ADD ro, r1 r0 ⃪ r0 + r1 1
I4 INC r0 r0 ⃪ r0 + 1 1
I5 INC r1 r1 ⃪ r1 + 1 1
I6 ADD r0, r1 r0 ⃪ r0 + r1 1
I7 Store r1, r0 M[(r1)] ⃪ r0 2
I8 Halt Stop 1
Assume that memory is word addressable with word size 32 bits. Program is loaded into memory
location (3000)10 onwards. The value of PC at the end of execution of above program is
__________.
Solution: 3009
Explanation:
(3009)
13. A branch mark program is running on a 40 MHz processor. The executed program consists of
100,000 instruction executions, with the following instruction mix and clock cycle count.
7
Explanation:
3.87 (3.86-3.88)
∑(𝐽𝑖 ×𝐶𝑃𝑖 ) [45000×1+32000×2+15000×2+8000×2]
𝐶𝑃𝐼 = =
𝐼𝐶 105
155000 155
= = 102 = 1.55
105
𝐼𝐶 ×𝐶𝑃𝐼 5
10 ×1.55
Execution time = = = 3.87 𝑚𝑠𝑒𝑐.
𝑓 40×106
14. A hypothetical control unit supports 5 groups of mutually exclusive control signals. The
number of bits that can be saved using vertical approach compared to horizontal are
__________.
Solution: 22
Explanation:
(22)
In horizontal: 1 + 5 + 7 + 15 + 8 = 36
In vertical: log 1 + log 5 + log 7 + log 15 + log 8 = 1 + 3 + 3 + 4 + 3 = 14
Total saved bits = 36 – 14 = 22
15. Consider the micro-programmed control unit which support 256 instructions, each of which
on an average takes 16 micro operations. The system support 16 flag conditions and 52 control
signals. If vertical microprogramming control is used in the system then total length of control
word is __________ (bits/word).
Solution: 22
Explanation:
(22)
16 = 24 and 52 < 26
8
The length of control word =
= 4 bit + 6 bit + 12 bit = 22 bits/ word
16. Consider a non-pipeline processor has clock rate of 25 MHz and CPI of 6, another processor
designed with same clock rate and 8 stage instruction pipeline. If program containing 500
instructions is executed on both processors, then the speedup factor is __________.
Explanation:
5.91 (5.90-5.92)
n = 500
tn = 6 (for non-pipeline)
K = 8 (for pipeline)
500 × 6 3000
𝑆= = = 5.91
500 + 8 − 1 507
Explanation:
(d)
S2: Conflict miss are occur when too many blocks are mapped into same line or set. So by
increasing the associativity i.e. increases the size of set and increases the number of sets.
9
S2: Compulsory miss can be reduced by increasing the line size i.e., reduce number of lines.
S3: Capacity miss can be reduced by increasing the cache memory size.
18. Consider the hypothetical processor which support 512 k words memory. It uses the memory
mapped IO configuration. In which when 2 MSB bits of address are 1 then assigned to IO port.
How many numbers of I/O port address and memory addresses are possible in the processor
respectively?
Explanation:
(a)
S1: Reference bit in page table entry used for page replacement.
S2: In hierarchical memory access organization, CPU perform read and write operation on only
level 1 memory.
S3: In simultaneous memory access organization, CPU perform read and write operation on any
level of memory.
10
Solution: Option (d)
Explanation:
(d)
S1: Reference bit sometimes called access bit used in page table entry to show if page is replaced
or not.
S2: In hierarchical memory access, CPU perform read and write operation only on level 1
memory. If miss occur then data is first transferred to level 1 then CPU access data.
S3: In simultaneous memory access, CPU perform read and write operation on any level of
memory i.e. not necessary to take data first into level 1 memory than access it.
20. A computer has 32-bit instruction and 9-bit address. If there are 400 two address instructions
then how many one address instructions can be formulated?
Explanation:
(d)
(a) In write through protocol, cache location and main memory location are updated
simultaneously.
(b) In write back protocol, cache location and main memory location are updated simultaneously.
(c) Modified or dirty bits are used by write through protocol.
(d) None of these.
11
Solution: Option (a)
Explanation:
(a)
Write through protocol update cache and main memory simultaneously where write back first
cache is updated and marked by dirty bit then main memory is updated.
Dirty bits are used by only write back protocol to know which cache block is updated.
22. A 16KB 4-way set associative write-back cache is organized as multiple blocks, each of size
64-bytes.
The processor generates 32-bit addresses. The cache controller maintains the tag information for
each cache block comprising with 1 valid bit and 1 Modified bit.
As many bits as the minimum needed to identify the memory block mapped in the cache. What is
the total size of memory needed at the cache controller to store meta-data (tags) for the cache?
Explanation:
(c)
16 × 210 𝐵
𝑇𝑜𝑡𝑎𝑙 𝑛𝑢𝑚𝑏𝑒𝑟 𝑜𝑓 𝑏𝑙𝑜𝑐𝑘𝑠 = 6
= 28
2 𝐵
256
𝑇𝑜𝑡𝑎𝑙 𝑛𝑢𝑚𝑏𝑒𝑟 𝑜𝑓 𝑠𝑒𝑡𝑠 = = 64
4
12
23. Consider a system with the main memory access time as 200 ns and cache access time as 10
ns. Hit ratio for read request is 0.8 and 80% of the memory requests are for read. If write through
policy is used, then the average time considering both read and write requests is __________.
Explanation:
(c)
I1 : R1 = 100
I2 : R1 = R2 + R4
I3 : R2 = R4 + 25
I4 : R4 = R1 + R3
I5 : R1 = R1 + 30
Calculate sum of (WAR, RAW and WAW) dependencies the above instructions.
(a) 10 (b) 12
(c) 6 (d) 8
Explanation:
(c)
13
Sum = (0 + 3 + 3) = 6
25. A 4-way set associative cache memory consists of 128 blocks. The main memory consists of
32768 memory blocks and each block contains 512 eight bit words. Find how many bits are
needed to represent TAG, SET and WORD field respectively?
Explanation:
(d)
14
26. Suppose directed mapped cache with 2m lines 2p bytes per cache lines. Memory is byte
addressable of 2n bytes. Compute the space required for storing tags (in bits)?
Explanation:
(b)
27. Consider a small two-way set-associative cache memory, consisting of 4 blocks. For
choosing the block to be replaced, use the least recently used (LRU) scheme. The number of
cache misses for the sequence of block addresses 18, 22, 10, 22, 18 is __________.
(a) 2 (b) 3
(c) 4 (d) 5
Explanation:
(c)
15
Total number of misses = 4.
28. Consider a pipelined system with four stages: IF, ID, EX, WB. Following chart shows the
clock cycles required by each instruction to compete each stage
How many clock cycles are required to complete the above instructions?
(a) 15 (b) 9
(c) 14 (d) 13
Explanation:
(a)
16
It requires 15 clock cycles.
29. A computer has a cache, main memory and a hard disk used for virtual memory. If
referenced word is in cache, 20 ns are required to access it. If it is in main memory but not in
cache 60 ns are needed to load it into cache and then reference is started again. If word is not in
main memory, 12 ms are required to fetch the word from disk followed by 60 ns to copy into
cache, the reference is started again. The cache hit ratio is 0.9 and main memory hit ratio is 0.6.
The average time in nano seconds required to access a referenced word on this system is
___________.
Solution: 480026
Explanation:
(480026)
30. In an enhancement of a design of a CPU, the speed of a floating point unit has been increased
by 30% and the speed of a fixed point unit has been increased by 20%. The overall speedup
achieved if the ratio of the number of fixed point operation to floating point operations is 4 : 6
and the floating point operation used to take twice the time taken by fixed point operation in the
original design (upto 2 decimal places) is __________.
17
Solution: 1.27 (1.26-1.28)
Explanation:
(1.27)
Let total operation be 100 and total time taken is t = 100 sec.
6
Floating point operations are = 10 × 100 = 60
4
Fixed point operations are = 10 × 100 = 40
Let time taken by floating point is t1 and time taken by fixed point is t2. So t1+t2=100 … (1)
Time taken by 60 floating point operation = t1
𝑡
1 floating operation = 601
𝑡
Similarly 1 fixed point operation takes 402
𝑡 𝑡
∵ 601 = 2 402
2t1 = 6t2
31. Suppose that in 1000 memory references there are 150 misses in first level and 100 miss in
second level cache. Assume that miss penalty from L2 cache to memory is 120 cycles. The hit
time of L2 cache is 50 cycles.
If there are 4 memory references per instruction, the average stall per instruction is
___________.
Solution: 78
Explanation:
18
(78)
32. Consider the machine with a byte addressable main memory of 216 byte, block size of 16 byte
and a 2 way set associative mapped cache having 210 lines. Suppose there are two bytes in main
memory i.e. first byte [E 01 F]16 and second byte [E 208]16 respectively then the difference of the
set value (in decimal) between given two bytes i.e. (SET value of second byte – SET value of 1st
byte) is __________.
Solution: 31
Explanation:
(31)
19
33. Consider two cache organizations. The first one if 64 KB way associative with 64 byte block
size. The second one is of the 64 KB direct mapped cache. The size of an address is 32 bits in
both organizations. A 4 to 1 multiplexer has latency of 0.8 ns which k bit comparator has latency
of k/5 nsec. The difference between the hit latencies of both cache organizations (i.e. associative
hit latency – direct mapped hit latency) (in nsec) is ___________.
Solution: 1.2
Explanation:
(1.2)
64 𝑘𝐵
Number of cache lines = = 1 𝑘 = 210
64 𝐵
210
Number of sets = = 28
22
H1 = 18/5 + 0.8 ns
= 3.6 + 0.8 ns = 4.4 ns
Difference = H1 – H2
= 4.4 – 3.2 = 1.2 nsec
20