Java program to perform the boolean operations
KW.java
Output
kodingwindow@kw:~$ javac KW.java
kodingwindow@kw:~$ java KW ——————————————————————————————————————————— Program to perform the boolean operations ——————————————————————————————————————————— true | false | true true & false | false true ^ false | true true || false | true true && false | false true == false | false true != false | true !(true || false)| false ——————————————————————————————————————————— kodingwindow@kw:~$
What Next?
Java program to perform the relational operations
Java program to perform the assignment operations
Java program to find the size of primitive data types
Advertisement