[Solved]Create Code Mips Application Calculates Stores Array Prints Numbers Console Determined Usi Q37234044
Create and code a MIPS application that calculates, stores (inan array), and prints numbers to the console determined by usingthe same approach as the Fibonacci sequence. The Fibonacci Sequenceis the series of numbers where each number is found by addingtogether the 2 numbers that came before the relevant value. Yourcode will ask the user to input the first 2 integer values thatwill be the start of the sequence. In addition, your code must askthe user to input the number of values (iterations) to becalculated, stored and shown (valid input should be between 3 and20 values/iterations inclusively). As an example of how thissequence works here is the start of the Fibonacci sequence withrelevant description: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, … You willnotice that the number 2 is calculated by adding the two numbersbefore it a 1 and a 1…3 is then calculated by adding 2 + 1…5 iscalculated by adding 2 + 3…etc. The output should be neat, provideoutput text to the user, and display the number of iterationsspecified by the user (neat with appropriate spacing). The codeshould be easy to read, well commented, and follow all MIPS formatand naming conventions. The code must primarily execute properlywith the expected result(s). However, the code will be scrutinizedand evaluated for a sense of elegance and logic. Please see theattached MIPS Application Development Rubric for specific gradingcriteria.
Expert Answer
Answer to Create and code a MIPS application that calculates, stores (in an array), and prints numbers to the console determined b… . . .
OR

