1. Write a program to define a class Employee with attributes name, employee_id and salary and also provide a parameterized constructor to initialize all the attributes. Create an appropriate collection to store the Employee objects such that the non-duplicate objects are stored in descending order of their salary. Use Iterator to display the names and salary of all the employees. 2. WAP to create a class Student with attributes name and cgpa. Add at least 5 Student objects in an appropriate collection such that they are sorted in descending order on the basis of their cgpa. Display the names of all the students who are eligible for Verizon placement drive. (Eligibility: cgpa >=7.5 ) 3. Write a program which prompts the user to enter N integers and store them in an arraylist. Now implement a method which accepts an arraylist containing duplicate values and returns a Collection having unique elements only. ...