Q1. Can a variable change its value in Java?
Yes. Variables can store different values during program execution.
Q2. Can I declare multiple variables at once?
Yes.
Q3. Is Java case-sensitive with variables?
Yes. Age and age are different variables.
Q4. Can variables store text?
Yes, using the String data type.
Q5. What happens if a variable is not initialized?
Local variables cause an error; instance variables get default values.