What is final int?
No Answer is Posted For this Question
Be the First to Post Answer
What is member in java?
what us Dyna action form?
4 Answers Aithent Technologies,
What are the types of sockets in java?
What are the 6 mandatory procedures for iso 9001?
What is a dynamic array java?
What do you understand by casting in java language?
what are upcasting and downcasting?
What is the need of "creating and throwing an UserdefinedException" when the "Exception" class is already available?
Is sizeof a keyword in java programming?
Which is bigger float or double?
How will you reverse a link list without using recursion?
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()); } }