Answer
Rewrite the following conditional expressions using if/else statements:
Work Step by Step
(a)
if x > 10:
score = 3 * scale
else:
score = 4 * scale
(b)
if income > 10000:
tax = income * 0.2
else:
tax = income * 0.17 + 1000
(c)
if number % 3 == 0:
print(i)
else:
print(j)