Select an option to see the answer and solution.
Flow Control
practice.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
58
Questions
2/3
Page
Pick an option on a question to see the right answer and solution.
int n = 5;
for (int i = 0; i < n; i++) {
System.out.print(i + " ");
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
int p = 3;
switch (p) {
case 1: System.out.print("One");
case 2: System.out.print("Two");
default: System.out.print("Default");
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
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);
}
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
public class Test{
public static void main(String args[]){
int i = 0, j = 5 ;
for( ; (i < 3) && (j++ < 10) ; i++ ){
System.out.print(" " + i + " " + j );
}
System.out.print(" " + i + " " + j );
}
}Select an option to see the answer and solution.
class Test{
public static void main(String args[]){
int x=7;
if(x==2); // Note the semicolon
System.out.println("NumberSeven");
System.out.println("NotSeven");
}
}What would the output of the program be?
Select an option to see the answer and solution.
public class Test{
public static void main(String args[]){
int i, j;
for(i=1, j=0;i<10;i++) j += i;
System.out.println(i);
}
}Select an option to see the answer and solution.
public class Test{
public static void main(String[] args){
int x=10, y=0;
if(x && y){
System.out.print("TRUE");
}
else{
System.out.print("FALSE");
}
}
}Select an option to see the answer and solution.
public class Test{
public static void main(String[] args){
int x = 3, y = 4;
switch(x + 3){
case 6: y = 0;
case 7: y = 1;
default: y += 1;
}
}
}Select an option to see the answer and solution.
char ch = 'a';
switch (ch){
case 'a':
case 'A': System.out.print(ch); break;
case 'b':
case 'B': System.out.print(ch); break;
case 'c':
case 'C': System.out.print(ch); break;
case 'd':
case 'D': System.out.print(ch);
}Select an option to see the answer and solution.
int count = 0;
do {
System.out.println("Welcome to Examveda");
count++;
} while (count < 10);Select an option to see the answer and solution.
public class Test{
public static void main(String[] args){
double sum = 0;
for(double d = 0; d < 10;){
d += 0.1;
sum += sum + d;
}
}
}Select an option to see the answer and solution.