+ 2
"==" What is it mean?
"==" What is it mean?
6 odpowiedzi
+ 2
= means equals to
== is a comparison between a and b (a==b) which checks whether they are equal or not.
+ 1
== means equal to.
it is a relational operator.
normally used for comparison among different opprents.
work with numerical values but not with string values.
+ 1
'==' means to check between two variable of any data type that whether they are equal or not. for example
a=5 and
a==b
the
b=5.
0
it is an operator reresenting an equal sign in maths. so while the statement "a is greater than b", is reptesented by "a>b", the statement "a is equal to b" is represented by "a==b".
0
== is a comparison operator.
it simply compares the two values.
the underlining condition being both operand has to be same data type.