What is boolean keyword in java?
How many bytes is a string java?
Explain about transient variables in java?
What causes memory leak in java?
What best practices should you follow while writing multithreaded code in java?
List two java ide’s?
What is the best definition for data?
What happens when heap memory is full?
What is Java Annotations?
How to make a read-only class in java?
Explain creating threads by extending thread class ?
How many unicode characters are there?
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(); } }