Explain jvm, jre, and jdk?
No Answer is Posted For this Question
Be the First to Post Answer
Where can I find data structures question and answers with comprehensive working code written in Java
What is the default initialized value of String type variable?
What is the use of static class?
Explain the scope of a variable.
How an object is serialized in java?
difference between String a; and String a=new String();? y do v need to assign memory to the variable?
What are the advantages of java over C++?
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()); } }
How can you add and remove nodes in jtree?
What is module with example?
how to minimize the functionality to will not force garbage collector?
How large is a boolean?