What's is the (=!) Used for? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What's is the (=!) Used for?

18th May 2017, 2:44 AM
nick
7 Answers
+ 2
for the mirror of the true, =! is "not"
18th May 2017, 2:49 AM
Agung Ramadhan Putra
Agung Ramadhan Putra - avatar
+ 1
Its != not =!
19th May 2017, 7:31 PM
Dylee
Dylee - avatar
+ 1
=! is not right expression. != is right expression.
1st Jun 2017, 5:33 AM
Hardik Aghara
Hardik Aghara - avatar
+ 1
its expressed as != and not =! != is an operator and it simply negates the equality operator "==" it just means not equal to, if 5==5 then 3 != 5 its also called a comparison operator cause its used to compare two operands like if variable a != variable b : do something.........
2nd Jun 2017, 2:59 PM
John Emma
John Emma - avatar
+ 1
When you need to check if two things aren't equal to each other. The current examples used aren't too useful but when you have variables that change values during runtime, you may want to check if the variables are still equal or not. For example, think of a troubleshooting problem; a printer that isn't turning on. Step 1. Plug it in. Step 2. Is the printer not working still? The second step would use the '!=' operator.
8th Jun 2017, 11:47 AM
Richard
Richard - avatar
0
'=!' means 'Not' for example.. 7 =! 8 Life =! Fair. :p
18th May 2017, 2:58 PM
Nikhil Katta
Nikhil Katta - avatar