+ 1
Which symbol is used for NOT logical operator?
8 Answers
+ 3
.. != ..
.. !== ..
!(.. == ..)
+ 16
!
+ 4
More or less, !
+ 2
!true == false // true
!false == true // true
!true == true // false
!false == false // false
đ
!!true == ? // now your answer
+ 1
but there is no out put for symbol !
+ 1
so please give me an example....
+ 1
It depends on which programming language you are using to make a decision:
C++, JavaScript, PHP:
if (a != b) {} or if (!(a == b)) {}
-----------------------------------------
Python:
if a != b:
task()
or:
if not (a == b):
task()
0
Opoopppppop