ISRO | ISRO CS 2020 | Question 78
A computer which issues instructions in order, has only 2 registers and 3 opcodes ADD, SUB and MOV. Consider 2 different implementations of the following basic block:
Case 1 Case 2 t1 = a + b; t2 = c + d; t2 = c + d; t3 = e – t2; t3 = e – t2; t1 = a + b; t4 = t1 – t2; t4 = t1 – t2;
Assume that all operands are initially in memory. Final value of computation also has to reside in memory. Which one is better in terms of memory accesses and by how many MOV instructions ?
(A) Case 2, 2
(B) Case 2, 3
(C) Case 1, 2
(D) Case 1, 3
(E) None of these
Answer: (E)
Explanation:
Quiz of this Question
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.