//Variable and data type--------- //psvm + tab = public static void main(String[] args) {} //sout + tab = System.out.println(""); package javaapplication; /** * @author ARIFUL ISLAM */ public class NewClass2 { public static void main(String[] args) { boolean b = true;//dinamic inisialayzation char c; short s; int i; float f; double d; System.out.println("Boolean = "+b); c = 'a'; System.out.println("Char = "+c); s = 32677; System.out.println("Short = "+s); i = 326767787; System.out.println("Int = "+i); f = 30.20f; System.out.println("Float = "+f); d = 30545.60; System.out.println("double = "+d); } }