Computer Science, asked by Anonymous, 1 year ago

If a=12 and b=10, then what will be the output of a==b?

Answers

Answered by nms
1
a==b gives the output false or 0 . as == is comparison operator.
Answered by Bunti360
3
== is an Boolean,
x== y, Gives the output whether it is True or False,

Here a = 12, and b = 10, which are not equal,

So,

a == b, gives an output " False ",

I am telling you the answer is basic computer languages such as Python, JavaScript etc !

Bunti360: Thank you for choosing my answer as brainliest answer !
Anonymous: Wpcm
Anonymous: Welcome*
Similar questions