1
JavaIntermediate#fundamentals
Eight built-in types: byte, short, int, long, float, double, char, and boolean. They store values directly on the stack rather than as objects, and each has a fixed size and default value.
int i = 10; double d = 3.14; boolean flag = true; char c = 'A';