I would appreciate if anyone can help me with following assembly
programming questions
1) Write a complete 80x86 assembly language program to prompt for the length and width of a rectangle and to display its perimeter (2*length+ 2*width).
2) Write an Assembly program to find the total number of even and odd numbers from an array (declare the array with the following data 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 of type WORD).
3) Write an Assembly program to concatenate two strings INSTR1 and INSTR2 and store the result in the string INSTR1.
4) Write a program that uses a loop to input signed 32-bit integers from the user and computes and displays their minimum and maximum values. The program terminates when the user enters an invalid input.
5) Using the following table as a guide, write a program that asks the user to enter an integer test score between 0 and 100. The program should display the appropriate letter grade. The program should display an error message if the test score is <0 or >100.
|
90 to 100 |
85 to 89 |
80 to 84 |
75 to 79 |
70 to 74 |
65 to 70 |
60 to 64 |
55 to 59 |
0 to 54 |
|
A+ |
A |
B+ |
B |
C+ |
C |
D+ |
D |
F |