Answer:
Following are the code to this question:
code:
=IF(EXACT(I2,"Yes"),"Elected",IF(EXACT(K2,"Yes"),"Yes","No"))
Explanation:
In the given the data is not defined so we explain only the above code, but before that, we briefly define working of if the function that can be defined as follows:
-
The If() function, is used only when one of the logical functions and its value must return the value true. or we can say it only return a true value.
- In the above function, a column "Elected" is used that uses other column values to check this column value is equal if this condition is true it will return "yes" value.
Try refreshing the page, if not restart your device check your internet etc.
That is true because Java was considered a rapid development programming language
Answer:
Please kindly check explainations for the code.
Explanation:
lw $t1, Num1
lw $t2, Num2
lw $t3, Num3
blt $t1, $t2, if
beq $t1, $t2, elseif
else:
add $t0, $t3, 5
sw $t0, Result
endif:
#.....other statements after if-elseif-else
if:
sw $t1, Result
b endif
elseif:
ble $t2, $t3, if2
or $t0, $t1, $t3
sw $t0, Result
b endif
if2:
and $t0, $t2, $t3
sw $t0, Result
b endif
Go to attachment for the onscreen code.