This is a simple Command Line Interface (CLI) based CRUD system built in Java to manage student records. The system uses ArrayList to store and manipulate student data such as ID, name, and marks.
To build a basic Java application for managing student data using object-oriented programming and data structures, and to understand how CRUD (Create, Read, Update, Delete) operations work in real-world scenarios.
- Language: Java
- IDE: IntelliJ IDEA / VS Code
- Data Structure Used:
ArrayList
- β Add Student
- ποΈ View All Students
- βοΈ Update Student Details
- β Delete Student
- πͺ Exit the Program
Each student object contains:
id(Integer)name(String)marks(Double)
--- Student Record Management System ---
1. Add Student
2. View Students
3. Update Student
4. Delete Student
5. Exit