Computer Science, asked by selvikarthi105, 4 months ago

evaluate the following python expression a) (12*2)=(3*8) b) (14*2)!=(3*8)​

Answers

Answered by Sciento
2

Answer:

num1 = 12 * 2

num2 = 3 * 8

if num1 == 3 * 8:

print(num1)

Answered by allysia
3

Answer:

a) True

b) True

Explanation:

  • (12*2) = 24 = (8*3) therefore it's true.
  • (14*2) = 28 and 3*8 = 24 they aren't equal and this statement translates to 28 not equal to 24 which is True.
Similar questions