li $t0, 7li $t2, 40sub $sp, $sp, 12         #Allocate space…

li $t0, 7li $t2, 40sub $sp, $sp, 12         #Allocate space on the stacksw $t0, 0($sp)             #Pass in t0sw $t2, 4($sp)             #Pass in $t2sw $ra, 8($sp)             #Preserve $RAjal MathAdd                #$v0 = MathADD(t0,t2)lw $ra, 8($sp)             #Restore $RAadd $sp, $sp, 12         #Deallocate space on the stack Consider the above call to MathAdd. If the “MathAdd” method were to itself make a call to a hypothetical method called “ABSvalue” (i.e. jal ABSvalue) what are the implication for register $ra (In other word this describes a situation where one method calls another method.)

Every student needs a major to graduate. Discuss at least th…

Every student needs a major to graduate. Discuss at least three (3) main criteria or considerations, as discussed in this class, that students need to explore and understand to choose a major effectively. Discuss how these factors have influenced your selection of a major.  1. Criteria #1. This has influenced my selection of a major by …  2. Criteria #2. This has influenced my selection of a major by …  3. Criteria #3. This has influenced my selection of a major by … 

li $t0, 7li $t2, 40sub $sp, $sp, 12         #Allocate space…

li $t0, 7li $t2, 40sub $sp, $sp, 12         #Allocate space on the stacksw $t0, 0($sp)             #Pass in t0sw $t2, 4($sp)             #Pass in $t2sw $ra, 8($sp)             #Preserve $RAjal MathAdd                #$v0 = MathADD(t0,t2)lw $ra, 8($sp)             #Restore $RAadd $sp, $sp, 12         #Deallocate space on the stack Consider the above call to MathAdd. If the “MathAdd” method were to itself make a call to a hypothetical method called “ABSvalue” (i.e. jal ABSvalue) what are the implication for register $ra (In other word this describes a situation where one method calls another method.)