What is flush () in java?
No Answer is Posted For this Question
Be the First to Post Answer
System.out.println(101/14) what is the output? a)6 b)14 c)7.14 d)0
Explain aggregation in java?
How do you escape a string?
How thread scheduler schedule the task?
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 Ideal Design of Class?
JVM responsibility?
In which language java is written?
Why string is popular hashmap key in java?
When the constructor of a class is invoked?
What is light weight component?
What is covariant return type?