Question
Let's build a program that ties together most of the concepts we have discussed this semester. For this assignment you will be writing a To
Let's build a program that ties together most of the concepts we have discussed this semester. For this assignment you will be writing a To Do List Manager (or a manager of any other type of String data). The program should operate similar to the program displayed in the attached video file. Please note this only shows the core functionality of the basic features. You may also choose to write this program using JOptionPane. You are not required to build a command line application.
This type of program is called a CRUD application. CRUD stands for Create, Read, Update, Delete. A majority of software programs fall into this category and this program will introduce you to this concept.
General Requirements
- Core Features (55 points +10 extra credit) - The program should display a menu and allow the user to perform one of the following tasks. Please consider how you could use methods to write one or more of these items. At least 1 of the features marked with an asterisk must be written using a method.
- (15 pts) Add an item to the list*
- (15 pts) Delete an item from the list*
- (15 pts) Print (display) the list*
- (10 pts) Quit the program
- (+10 Extra Credit) All the user to edit/replace an item at a specific location in the list.
- Data Structure (15 points +10 extra credit) - You will most likely want to use an ArrayList to store your data for this assignment. I will give 10 extra credit points if your group chooses to use a regular plain-old-Java array for this assignment (this can be very challenging to do!).
- Data Persistence (10 points +10 extra credit) - The program must persist data to an external file when it quits. The program must read the data in from the external file when it begins. You will get 10 points for making writing to a file or reading from a file working. If you get both features working you will get the extra credit.
- Other Criteria (40 points) - Please see the attached rubric for the items that comprise the remainder of the program's grade. Please note it is possible to get above 100 points on this assignment.
- Extra Credit (+10 points) - Configure the program so it can read from and write to multiple files (different to do lists)
[a]dd [d]elete [p]rint [q]uit Enter option:
-
that what I want to operation
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