Q11.  Explain about SortedSet interface?

it is child interface of Set interface. it can be used to represent a group of individual objects in to a single entity where

Q12.  Explain about NavigableSet ?

It is child interface of SortedSet and provides several utility methods for navigation purposes

Q13. Explain about Queue interface?

If we want to represent a group of individual objects prior to processing, then we should go for Queue interface. It is child interface of Collection interface.

It has introduced in 1.5 version.

Q14. Explain about Map interface?

Remember it is not a child Interface of Collection Interface and hence Map and Collection Interfaces doesn’t have any relationship.

Q15. Explain about SortedMap ?

Q16. Explain about NavigableMap?

Q17.  Explain about ArrayList class?

 ArrayList is a Collection which can be used to represent a group of objects as a single entity.

Q18. What is RandomAccess Interface?

Q19. Explain about LinkedList class?

LinkedList is a Collection implemented class which can be used for representing a group of objects as a single entity.

Q20. Explain about Vector class?

     Vector is a legacy collection class which can be used to represent a group of objects.