In Java, what is the purpose of the static keyword when applied to a variable?
A. It makes the variable non-static.
B. It initializes the variable.
C. It allows access from any class.
D. It makes the variable constant.
Answer: Option C
A. It makes the variable non-static.
B. It initializes the variable.
C. It allows access from any class.
D. It makes the variable constant.
Answer: Option C
What is the default access modifier for class members in Java if no access modifier is specified?
A. public
B. protected
C. private
D. package-private
A. private
B. public
C. protected
D. package-private
What keyword is used to declare a constant in Java, which is implicitly final and static?
A. final
B. const
C. static
D. constant
A. protected
B. private
C. public
D. default
Join The Discussion