program 1 package dataflair; public class TestVariables { public static void main(String[] args) { System.out.println(“Byte Details”); System.out.println(Byte.TYPE); System.out.println(Byte.SIZE); System.out.println(Byte.MAX_VALUE); System.out.println(Byte.MIN_VALUE); System.out.println(“Short Details”); System.out.println(Short.TYPE); System.out.println(Short.SIZE); System.out.println(Short.MAX_VALUE); System.out.println(Short.MIN_VALUE); System.out.println(“Integer Details”); System.out.println(Integer.TYPE); System.out.println(Integer.SIZE); System.out.println(Integer.MAX_VALUE); System.out.println(Integer.MIN_VALUE); System.out.println(“Long Details”);...