What is the use of put method?
No Answer is Posted For this Question
Be the First to Post Answer
Can we have try without catch block?
Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
What is the difference between pageContext and page implicit objects in jsp?
9 Answers Gspann Technologies, Merrill Lynch, Polaris,
What is object cloning in Java?
0 Answers SwanSoft Technologies,
What are the basic control structures?
Which arithmetic operations can result in the throwing of an arithmeticexception?
Why are the methods of the math class static?
How do you check if a character in a string is a digit or letter?
What is meant by Session? Explain something about HTTP Session Class?
Explain about map interface in java?
Is math class static in java?
What is a double vs float?