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 |
Map map = new HashMap(2); map.add(“1”,”one”); map.add(“2”,”two”); map.add(“3”,”three”); What will happen at this line?
What does a za z0 9 mean?
In which JDK version event-delegation model is introduced?
What is the association?
Why convert an applet to an application?
Explain about global variables in Java?
How to call one constructor from the other constructor ?
Give me some null interfaces in java?
Why are there no global variables in java?
What is illegal identifier in java?
What is the meaning of find and replace?
What is advantage of using threads?