Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Lab 3 Grading Considerations: Does the code contain your name? (5pts) Is the code functional? (5pts) Is the code well commented? (5pts) Is the code
Lab 3 Grading Considerations: Does the code contain your name? (5pts) Is the code functional? (5pts) Is the code well commented? (5pts) Is the code well-structured and efficient? (5pts) Does the code meet the requirements? (5pts) Develop a Java Application that: Implement a List application that allows a user to manage two types of list implementations (singly linked & circular) . When the user enters the application: 1. The user will be prompted to select: a. Singly Linked List b. Circular List 2. For each (a) and (b) the user will be provided the ability to: 1. Select the size of the list. 2. Remove ANY item from the list. 3. Add new items to the list - if the space is available. The application must keep track of and display an up-to-date list of all items in the list along with their current positions. 4 . The application must notify the user if the capacity of the list has been reached. 5. The application must provide a graceful way to exit. 6. The application must contain proper error handling throughout
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started