MCQ
Single Best Answer
Not Set
QDetermine output:
public class Test{
public static void main(String args[]){
int i;
for(i = 1; i < 6; i++){
if(i > 3) continue ;
}
System.out.println(i);
}
}
ID: #2136
Java Control Flow
1,654 views
Question Info
#2136Q ID
Not SetDifficulty
Java Control FlowTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer: Option D
Explanation
6
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic