Examlex
Which for loop prints data across each row in the following code snippet?
Int i;
Int j;
For (i = 1; i <= 3; i++)
{
For (j = 1; j <= 3; j++)
{
System.out.print("X") ;
}
System.out.println("") ;
}
Q1: A new class is proposed to collect
Q5: What is the value inside the value
Q7: What does the following statement sequence print?
Q11: What is the output of the following
Q40: How many times does the code snippet
Q45: Which one of the following is a
Q57: What is wrong with the following code
Q69: Consider the classes shown below: public class
Q91: Which statement is true about the code
Q105: Which of the following loops will print