What is the return type of the main method?
Where are local variables stored?
what is the difference between sleep() and Wait()?
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 polymorphism?
Explain java coding standards for classes or java coding conventions for classes?
How do you reverse a string in java?
How many ways can you break a singleton class in java?
what is method reference in java 8?
When is an object subject to garbage collection?
How many types of packages are there in Java?
What is the function of compareto in java?
what is the difference between thread and runnable types? : Java thread