A

Admin • 833K Points
Coach

Q. Which one is not a comparison operator?

  • (A) <
  • (B) >
  • (C) =
  • (D) !=
  • Correct Answer - Option(C)
  • Views: 27
  • Filed under category JavaScript
  • Hashtags:

Explanation by: Admin

= is an assignment operator. == is comparison operator.
var a = 5;
if(a==5){
echo "True";
}
else{
echo "False";
}

Output of this code is True because comparison is true.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.