The AND Operation
Op1 Op2 Op1 AND Op2
0 0 0
0 1 0
1 0 0
1 1 1
The XOR Operation
Op1 Op2 Op1 XOR Op2
0 0 0
0 1 1
1 0 1
1 1 0
The OR Operation
Op1 Op2 Op1 OR Op2
0 0 0
0 1 1
1 0 1
1 1 1
The AND Operation on boolean Values
Op1 Op2 Op1 AND Op2
false false false
false true false
true false false
true true true
The XOR Operation on boolean Values
Op1 Op2 Op1 XOR Op2
false false false
false true true
true false true
true true false
The OR Operation on boolean Values
Op1 Op2 Op1 OR Op2
false false false
false true true
true false true
true true true
public class MainClass {
public static void main(String[] argv) {
System.out.println(true & true);
System.out.println(true && true);
}
}
|