What is vector?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

How many arguments can a method have java?

0 Answers  


What is the importance of static variable?

0 Answers  


What is immutable state?

0 Answers  


Explain illegalmonitorstateexception and when it will be thrown?

0 Answers  


Is there any use of an abstract class which has no methods and no attributes?

1 Answers   Wipro,


What's the difference between int and integer in java?

0 Answers  


Can we create a class inside a class in java?

0 Answers  


public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?

6 Answers  


What are the differences between heap and stack memory in java?

0 Answers  


How can constructor chaining be done by using the super keyword?

0 Answers  


Can we add default constructor to Servlet?

1 Answers   Fidelity,


JVM is platform independent or depeneded?

7 Answers  


Categories