ICSE Class 10 Computer Applications
Question 5 of 30
Solved 2025 Specimen Paper ICSE Class 10 Computer Applications — Question 5
Back to all questionsstatic
Reason — In Java, keywords are reserved words that have a specific meaning and purpose in the language. Keywords must always be written in lowercase. Analysing the given options:
If: Incorrect because Java keywords are case-sensitive, and the correct keyword isif(in lowercase).BOOLEAN: Incorrect because the keyword in Java isboolean(in lowercase).static: Correct.staticis a valid Java keyword used to declare static methods, variables, or blocks.Switch: Incorrect because the correct keyword isswitch(in lowercase).