Multiple choice technology programming languages

Which is not a java keyword?

  1. for

  2. break

  3. continue

  4. Structure

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

Java keywords are reserved words with specific meanings in the language. 'for', 'break', and 'continue' are built-in control flow keywords. 'Structure' is not a keyword in Java (unlike 'struct' in C/C++). Note that Java keywords are case-sensitive and lowercase.