-
-
-
Why cant we compare two objects with ==,why we should use only .equals() for objects.
we can compare two Strings with (==) when we assign some string value to the String variable,but if we create an object to that strings and compare eachother we cant use(==) operator ,because we can compare only values with(==) operator but as Objects contains references to that variables we cant use(==) operator,hence .equals() is used on references and (==) is useed on values
-
What is collection framework?what interfaces and classes support collection framework?
One can use different groups of objects in program using collection frame work.for more detail readcollection frame work from java.util pack.
-
If interface & abstract class have same methods & abstract class also not contain any implementation for those methods which one you prefer ?
Use abstract class because we implement only requried methods of abstract class but for interface we must implement all methods whether or requried or not
-
-
-
-
-
What is the difference b/w Iterator & ListIterator
Iterator : Enables you to cycle through a collection,obtaining or removing elementsListIterator :It extends Iterator allow bidirectional traversal of list & the modification of element
-
-
-
-
Why was Java Created?
PlatForm Indepentdent ,security,Garbage Collection.
-
-
-
-
-
-
Core Java Interview Questions
Ans