Sign up for FlowVella
Sign up with FacebookAlready have an account? Sign in now
By registering you are agreeing to our
Terms of Service
Loading Flow
Logical Operators Practice
&&
(2 == 3) && (-1 < 5)
(3 != 4) && (2+4 == 6)
||
(2 == 3) || (-1 < 5)
(3 != 4) || (2+4 == 6)
(3 == 4) || (7+2 == 10)
!
! (2 == 3)
! (-1 < 5)
! ((3 != 4) && (2 +4 == 6))