Multiple choice technology programming languages

Which of these below are java key words?

  1. new

  2. break

  3. default

  4. goto

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

Java has 50 reserved keywords including 'new' (instantiation), 'break' (loop exit), and 'default' (switch/annotation default). 'goto' is a reserved keyword but not used in Java - it's reserved for potential future use but has no functionality. Option D is incorrect because goto is indeed a reserved keyword in Java.