For this lab, we will be finding the sum of the first 100 odd…

Question Answered step-by-step For this lab, we will be finding the sum of the first 100 odd… For this lab, we will be finding the sum of the first 100 odd integer numbers and the first 100 even integer numbers between 1 and 200 using a single loop. The final result should be two values saved in two registers or displayed to the user. Submission should include the code to solve the problem as a text file (8 points), comment on your code (1 point) and a screenshot of the final output as a jpg or png (1 point). If the answer doesn’t have a correct loop from 1 to 200, 6 points will be deducted. A copy of the original “Hello World!” code is provided below: .datamsg: .asciiz “Hello World”.extern foobar 4.text   .globl mainmain: li $v0, 4 # syscall 4 (print_str)la $a0, msg # argument: stringsyscall # print the stringlw $t1, foobarjr $ra # retrun to caller   Engineering & Technology Computer Science CSE 564 Share QuestionEmailCopy link Comments (0)