In Java, what is the purpose of the final keyword when applied to a method?
A. It makes the method non-final.
B. It allows method overriding.
C. It makes the method constant.
D. It makes the method static.
Answer: Option C
A. It makes the method non-final.
B. It allows method overriding.
C. It makes the method constant.
D. It makes the method static.
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