Answer the question and fill in to the blank line Show the s
Answer the question and fill in to the blank line. Show the steps!!!( This is Assembly language question)
W:=7
U:= 2
W:= 5 + (W*(W + U÷W) + 2)÷2
T := W
Solution
W:=7
U:= 2
W:= 5 + (W*(W + U÷W) + 2)÷2
Steps:
1. 5 + (7*(7 + 2÷7) + 2)÷2
2. 5 + (7*(7 + 0)+ 2)÷2
3. 5 + (49 + 2)÷2
4. 5 + (51)÷2
5. 5 + 25
6. 30
W = 30
T := W
T = 30
