- Home
- Output Questions for Class 10 ICSE Computer Applications
Give the output of the snippet: int a = 3; while (a<=10) {
Output Questions for Class 10 ICSE Computer Applications
Give the output of the snippet:
int a = 3;
while (a<=10)
{
a++;
if(a== 5)
continue;
System.out.println(a);
}