multiple choice
In Python, the expression: (5 – 1) * ((7 + 1)/(3 – 1)) evaluates to:
14
14.5
16
16.0
Answers
Answered by
4
Answer:
(5 – 1) * ((7 + 1)/(3 – 1)) = 16
Explanation:
(5 – 1) * ((7 + 1)/(3 – 1))
= (4)×(8)/(2) = 4 × 4
= 16
Answered by
1
Answer:
16
Explanation:
python follows BDMAS rule
priority is given to braket then division then multiplication
5-1=4
7+1=8
3-1=2
now,4*8/2
4*4=16
Similar questions