Predict the output of 12+(3**4–6)/2
Answers
Answered by
20
(49.5) in python :
Explanation:
- The (**) is an operator that is used in python to calculate the power. So if there is an x**y, then it will calculate the y power of x.
- When the above expression will be evaluated in python it will be like:-
- 12+(3**4-6)/2 will be 12+(81-6)/2 will be 12+75/2 will be 12+37.5 will be 49.5 will be the final answer.
- To find this answer the user needs to write "print(12+(3**4–6)/2)" or store the value in any variable.
Learn More :
- Python : https://brainly.in/question/14689905
Answered by
0
Answer:
49.5
Explanation:
12+(3^ **4 - 6 )/2
12 + (81 - 6) / 2
12 + 75/2 12+37.5
49.5
Similar questions