HOW TO PRINT A NO IN WORDS USING WHILE LOOP THE NO WILL BE
PRINTED WHEN IT WILL BE IN THE RANGE BETWEEN 1 AND 3?
Answer / jay harkhani
class WhileLoop
{
public static void main(String args[])
{
int i=1;
while(i!=4)
{
System.out.println("NO");
i++;
}
}
}
| Is This Answer Correct ? | 5 Yes | 10 No |
How you can force the garbage collection?
How do you use equal in java?
What is the difference between static and non-static variables in java programming?
How many bits are allocated to represent character of character sets - Unicode, ASCII, UTF-16, UTF-8?
Do I need java on my pc?
Explain java heap space and garbage collection?
How to find the index of the largest number in an arraylist java?
How does class forname work in java?
How do you compare arrays in java?
what is mutual exclusion? : Java thread
What does it mean that strings are immutable?
What is linkedlist in java?