Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 474 Bytes

File metadata and controls

39 lines (33 loc) · 474 Bytes

Not

not False ? not True ?

Or

True or False ? True or True ? False or True ? False or False ?

And

True and False ? True and True ? False and True ? Flase and False ?

Not Or

not (True or False) ? not (True or True) ? not (False or True) ? not (False or False) ?

Not And

not (True and False) ? not (True and True) ? not (False and True) ? not (False and False) ?

!=

1 != 0 ? 1 != 1 ? 0 != 1 ? 0 != 0 ?

==

1 == 0 ? 1 == 1 ? 0 == 1 ? 0 == 0 ?