What are different types of constants?
No Answer is Posted For this Question
Be the First to Post Answer
What is the abstract class?
when we write class.forName("any one class"); what happens actually?what it will return?explain stepwise?
What is a dot notation?
Is cout buffered?
What does || || mean in math?
I want my class to be developed in such a way that no other class (even derived class) can create its objects. How can I do so?
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 module with example?
How do you clear an arraylist in java?
Explain serialization and deserialization in java?
Explain super keyword in java.
What are singleton services?