//For AND operations, 1 AND 1 produces 1. Any other combination produces 0.
//You get a 1 result from an AND operation if both the first operand and the second operand are 1.
public class MainClass { public static void main(String[] argv) { int i = 2; int b = 4;