Single Choice
Moderate
QWhich is a correct if statement?
ID: #25854
MCQ Quiz - Class 8 - Programming
6 views
Question Info
#25854Q ID
ModerateDifficulty
MCQ Quiz - Class 8 - ProgrammingTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
Correct Answer Explanation:
Java's if uses parentheses () around the condition and curly braces {} for the body: if (condition) { statements; }
Why the other options are incorrect:
- Option B: 'then' isn't Java syntax; use braces.
- Option C: Java is case-sensitive — 'IF' and 'THEN' are wrong.
- Option D: Square brackets [] are for arrays, not conditions.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic