Java Primitives DemonstrationA demonstration of java primitives Sep 5, 2022 • 1 min read jupyter int b = 10; boolean c = false; System.out.println("The integer is " + b + " and the boolean is " + c) The integer is 10 and the boolean is false