Java OCA OCP Practice Question 1290

Question

Of the following four modifiers,

choose the one that is not implicitly applied to all interface variables.

  • A. final
  • B. abstract
  • C. static
  • D. public


B.

Note

Interface variables are implicitly public, static, and final.

Variables cannot be declared as abstract in interfaces, nor in classes.




PreviousNext

Related