Multiple choice technology programming languages

Which one of these are legal combinations when used with a method??

  1. abstract final

  2. abstract static

  3. static final

  4. private abstract

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Static and final modifiers can be used together on a method - this creates a method that belongs to the class and cannot be overridden. Abstract cannot be combined with final, static, or private because abstract methods must be overridden.