Java MCQ: What is the variables declared in a class for the use of all methods of the class called?
a) Instance variables
b) Local variables
c) Static variables
d) Global variables
Answer:
a) Instance variables
Explanation:
Instance variables are declared within a class but outside of any method. They are used by all methods of the class and each instance of the class has its own copy of these variables.
Reference links:
https://www.rameshfadatare.com/learn-java-programming/
https://www.javaguides.net/p/java-tutorial-learn-java-programming.html