Student Record Management System
Abstract:
This project is a menu-driven console application to manage student records. It allows adding,
viewing, updating, and deleting student details using basic file handling and ArrayList.
Objectives:
- Add and manage student records
- Search and delete student by ID
- Update existing records
Tools & Technologies Used:
- Java SE
- Eclipse IDE
- File Handling
Key Features:
- Add student
- View student
- Search by ID
- Delete student
- Update student
Sample Code Snippet:
class Student {
String id;
String name;
String course;
// Constructor, Getters, Setters
}
Scanner sc = new Scanner(System.in);
int choice;
do {
System.out.println("1. Add 2. View 3. Search 4. Delete 5. Update 6. Exit");
choice = sc.nextInt();
// handle choices
} while(choice != 6);