Collection: ================ A collection is an object that can hold references to other objects . The collection interfaces declare the operations that can be performed on each type of collection. Collection is an Interface, and its store group of object. Framework: - Framework is a api its use to provide a readymade functionality. It represents a set of classes and interfaces. Collection Hierarchy: List: - 1. List Follow Insertion order 2. List Store Duplicate data 3. List Size not limit 4. List store data index base List interface is the child interface of collection interface.it inhibits a list type data structure in which we can store the ordered collection of objects it can cave dublicate values Exp :- List <String>list1 =new ArrayList<>(); List <Integer>list2=new LinkedList<>(); ...