Java Collections Programming Interview Questions Answers - 1

Question: 1

What is java collections frameworks?

  • Collections are used in every programming language and initial java release contained few classes for collections: Vector, Stack, Hashtables, Array.
  • But looking at the larger scope and usage, Java 1.2 cane up with Collections Framework that group all the collection interfaces, implementations and algorithms.

Some of the benefits of collection framework are

  • Reduced development effort by using core collection classes rather than implementing our own collection classes.
  • Code quality is enhanced with the use of well tested collections framework classes.
  • Reusability and Interoperability
  • Reduced effort for code maintenance by using collection classes shipped with JK.

Question: 2

What is the difference between comparable and comparator?

Comparable

  • Comparable provides only one sort of sequence.
  • It provides one method named compareTo().
  • It is found in java.lang.package.
  • If we implement Comparable interface, actual class is modified.

Comparator

  • Comparator provides multiple sorts of sequences.
  • It provides one method named compare().
  • It is found in java.util.package.
  • Actual class is not modified.

Question: 3

What is locale?

A Locale object represents a specific geographical, political or cultural region.

Question: 4

What is the dictionary class?

  • The Dictionary class is an abstract class.
  • The class maps keys to values.
  • The classes such as Hash Tables are the sub classes of the abstract class Dictionary.
  • The key and values are objects.
  • The key and value are non null objects.
  • The Dictionary Class provides the capability to store key value pairs.

Question: 5

Which package is used for pattern matching with regular expressions?

java.util.regex package is used for this purpose.

Related Questions