Which is not a java keyword?
-
for
-
break
-
continue
-
Structure
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.