Module 1 - CaseGENERAL PURPOSE DATA STRUCTURES (ARRAYLIST, LINKEDLIST, AND VECTOR) AND SEARCH ALGORITHMS
Case Assignment
Write a Java application that accomplishes the following tasks:
- Prompts users to enter the number of students and their names in this course.
- Displays the total number of students in the class and their names.
- Deletes the names of the students who drop the class.
- Displays how many students dropped and their names.
After you are done, submit the source code along with screenshots.
Assignment Expectations
- You are required to choose one of the three data structures discussed in this module: ArrayList, LinkedList, or Vector, and apply it in this program.
- The program should accomplish all the tasks in the assignment.