Why do we need hashset in java?
Why destructor is not used in java?
who was the founder of java
32 Answers CTS, HCL, ProKarma,
Why is stringbuffer thread safe?
What is an Applet ?
Explain the difference between intermediate and terminal operations in java8?
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 does || || mean in math?
What is oop in java?
program to validate the IP address? Validity range should be 0 to 255
What is the use of arraylist class in java?
What are the library functions in java?
how you will prevent method overriding?