A simple command-line Student Record Management System in Java that demonstrates OOP (encapsulation), collections (ArrayList), and basic CRUD operations:
- Add student
- View all students
- Find student by ID
- Update student
- Delete student
- Student.java - Model class (id, name, marks) with getters/setters.
- StudentManager.java - Handles storage (ArrayList) and CRUD operations.
- Main.java - CLI menu and user interaction.
- Open terminal in project folder.
- Compile: