A Java Program to declare and initialize Boolean variables and print them on the Standard Output Device.
publicclass JAVA_006 { publicstaticvoid main(String[] args) { boolean value_1=true; boolean value_2=false; System.out.println("Value_1 = " + value_1); System.out.println("Value_2 = " + value_2); } }