What is object of class in java?
No Answer is Posted For this Question
Be the First to Post Answer
Why are the methods of the math class static?
Hi friends, i am new to java. can you explain how java is secured.
Can constructor be static or final?
what is jndi?
How can we break singleton in java?
If you do not want your class to be inherited by any other class. What would you do?
How many bits is a word?
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 do you meant by Platform-Independent?
how exactly garbage collection take place?
Write a program for recursive Traverse?
what is the difference between String and StringBuffer classes?