To compare the two numbers a
and b
in Boolean, you can evaluate the expression a == b
.
Given:
a = 12
b = 8
Now, let's evaluate the expression:
a == b
would be12 == 8
, which isfalse
.
Thus, the correct response to complete the code is:
a == b is false