Which of the instruction(s) are needed to store the product of multiplication and remainder of the division operation respectively in the program given below? li $t0, 2 li $t1,5 div $t1, Sto mult $t0, St1 code example
Example: quotient mips
div $a0, $a1
mfhi $t1 # remainder
mflo $t2 # quotient