What are the different http methods?
No Answer is Posted For this Question
Be the First to Post Answer
how session will be expired ?
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 does bitwise or mean?
What does java stand for?
Which is better singleton or static class?
What are assembly attributes?
How to sort array in descending order in java?
Which of the following can be referenced by a variable? A. The instance variables of a class only B. The methods of a class only C. The instance variables and methods of a class
Which collection is best for sorting in java?
I don’t want my class to be inherited by any other class. What should I do?
What is the significance of java packages?
Which collections are thread safe in java?