Home Interview Questions and Answers Java Basics Interview Questions and Answers For Freshers and Experience Part-14

java91. Can a public class MyClass be defined in a source file named YourClass.java?

No. The source file name, if it contains a public class, must be the same as the public class name itself with a.java extension.
92. Can main() method be declared final?

Yes, the main() method can be declared final, in addition to being public static.

93. How many objects are created in the following piece of code?

MyClass c1, c2, c3;

c1 = new MyClass ();

c3 = new MyClass ();

94. What is HashMap and Map?

Map is an Interface and Hashmap is the class that implements Map.

95. Difference between HashMap and HashTable?

The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls. (HashMap allows null values as key and value whereas Hashtable doesnt allow).

HashMap does not guarantee that the order of the map will remain constant over time. HashMap is unsynchronized and Hashtable is synchronized.

96. Difference between Vector and ArrayList?

Vector is synchronized whereas arraylist is not.

You may also like

Leave a Comment