Question: Given a numeric score of a student, write down an assembly program that calculates the grade of the student as follows: if Score >= 90 then Grade = 1 else if Score >= 80 then Grade = 2 else Grade = 3 Program
Question: Write a program to find the maximum of x3 - 14x2 + 56x - 64 in the range -2 <= x <= 8, by stepping one by one through the range.
[You may use the "commands" for a breakpoint in gdb to automatically print the content of registers in each iteration. The minimum value should be available in one of the register at the end of the program.]