Multiple choice technology programming languages Which of the following is not a keyword or reserved word in Java? if then goto while case Reveal answer Fill a bubble to check yourself B Correct answer Explanation In Java, 'if', 'goto', 'while', and 'case' are all reserved keywords. The word 'then' is not a Java keyword, even though it's used in other languages like Pascal. Java uses if(condition) { } syntax without a 'then' keyword.