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 |
Is linked list a linear or non-linear data structure?
0 Answers Akamai Technologies,
What is a class component?
What is a finally block?
how to handle http request in struts
Is main an identifier?
What is user defined exception?
Is a method a function?
What are abstract methods in java?
What is the purpose of a transient variable?
Explain public static void main(string args[]) in java.
What is the string function?
What are identifiers in java?