Multiple choice technology programming languages Which of these lists contains at least one word that is not a Java keyword? abstract, default, if, private, this do, implements, protected, boolean, throw case, extends, int, short, try import, break, double, exception, throws byte, else, instanceof, return, transient None of the above Reveal answer Fill a bubble to check yourself D Correct answer Explanation All words in options A, B, C, and E are Java keywords. Option D contains 'exception' which is not a keyword (it's a class name in java.lang). 'import', 'break', 'double', and 'throws' are valid keywords.