42. What will be the output of the following code?
public class Test
{
public static void main(String args[])
{
int i=1,j=10;
do{
if(i++>--j) continue;
}while(i<5);
System.out.println(i +" " +j);
}
}
Select 1 correct answer:
A. i=6 j=5
B. i=5 j=5
C. i=6 j=4
D. i=5 j=6
E. i=6 j=6