Lab 3
Lab 3
Write a program in Assembly language using MIPS instruction set to read 5 integer numbers
from the user and find out the smallest among all the numbers.
Question 2:
Write a program in Assembly language using MIPS instruction set that will calculate the bonus
marks of a student based on the following tables:
>=90 >=3 10
>=80 >=2 5
>=70 >=1 2
For example, a student will receive a bonus mark of 5 if he gets 80 total marks or more but less
than 90, OR if he completes 2 projects in the course. Use a nested if statement to solve the
above problem.