What are Primitive Data Types?
Storage locations where the name of the location and the value being stored are the same.
[I Don’t like this answer]
What are the 8 Primitive Data Types in Java?
byte, short, int, long, float, double, boolean, char
How do you ‘Declare’ a variable?
Using a declaration pattern:
dataType storageName;
What are ‘variables’ in Java?
Ans:
How do you ‘initialize’ a variable?
Using initialization pattern:
storageName = value;
What are Reference Data Types?
Ans: