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 |
What is Co-Variant return type in method overriding?
Why a dead thread occurs?
Convert a binary search tree to a sorted doubly linked list inplace.
What does nextint () do in java?
What is string builder in java?
What is procedure overloading?
What is parameter example?
what is the context
What is null statement?
Describe what happens when an object is created in java ?
Ducking is automatic in checked exception?True or false
What's the default access specifier for variables and methods of a class?