Multiple choice technology programming languages

Which is not a keyword?

  1. Finalize

  2. Finally

  3. Final

  4. Both a &c

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

Finalize is NOT a Java keyword - it's a method name in the Object class called before garbage collection. 'final' is a keyword (for constants, non-extendable classes), and 'finally' is a keyword in try-catch-finally blocks for guaranteed execution.