Please login to post your comments.
Fill in the blanks.
State whether the following statements are True(T) or False(F).
With the help of an example, show the working of a nested for loop.
What are jump statements? Name the different jump statements available in Java.
State one difference between break and continue statement.
Give the output of the following program fragment:
int A;
for(A=1;A<=10;A++){
System.out.println(A);
if(A==4)
break;
}