The question is attached as a word doc
FINAL PROJECT There are three assembly codes attached as screenshots (both inputs and outputs); which are in separate files. However the questions are on the second page of this doc. What I want you to do for each of the programs is: 1. A program discussion/conclusion for each (a little over half a page for each). 2. The discussion should state issues that I possibly could have had writing the code(s), what my approach in writing the code(s) was (most important!!!), and how I overcame the issues writing the program. ***For the first one, you can say that I didn’t have any issues because it was slightly similar to our previous homework assignment. ***For example, an issue I had was that my program didn’t work because I forgot to include ……. in my code. ---> similar to this ***The approach part of the discussion is the most important. It should explain the process in getting the solution/output for the program. ***For example, for the second one, you can state why I used the scanf function to read the 6 numbers in an array. ---> elaborate on this 3. Lastly, a conclusion that states what I have learned from the program (approximately 3-4 sentences). So, in total, each program discussion and conclusion should be about ¾ of a page long. It is fine if two of them are just a little over a half page or even a half page, but at least one program should have discussion/conclusion close to a ¾ of a page long. Question One: Write an assembly language program that allows a user to enter any 5 numbers then display the sum of the entered 5 numbers. For example: Enter: 1, 2, 3, 4, 5 Output First Line: Display: Sum of the Entered is: 15 Output Second Line: Display: Division of entered digit number 4 by entered digit number two 2 so (4/( 2 = 2) Question Two: Write an assembly language program that allows a user to enter any 6 numbers in any order then display the largest and smallest entered number and the order from small to large and then large to small For example Enter: 4, , 2, 7, 9, 6, 1 Display: Largest entered number is: 9 Smallest entered number is: 1 Large to Small: 9, 7, 6, 4, 2, 1 Small to Large: 1, 2, 4, 6, 7, 9 Question Three: Write an assembly language program to count number of vowels in any given string.