What is the requirement of thread in java?
No Answer is Posted For this Question
Be the First to Post Answer
Define the term string pool?
What does arrays sort do in java?
What is connection class in java?
Explain how to force the garbage collection in java.
What classes of exceptions, thrown by a throw statement?
How transient variable is different from volatile variable?
What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }
What is entry in java?
Explain about vector, dictionary,hash table, property classes?
Can we have static methods in an interface?
What are the files generated after using IDL to java compiler?
how to create constants in java?