A simple console-based Student Management System built using Core Java.
This project allows users to perform basic operations like adding, viewing, searching, updating, and deleting student records.
- ➕ Add Student
- 📋 View All Students
- 🔍 Search Student (by ID or Name)
- ✏️ Update Student Details
- ❌ Delete Student
- 🚪 Exit Application
- Java
- ArrayList (for storing data)
- Scanner (for user input)
StudentManagementSystem/ │ ├── StudentManagementSystem.java # Main program file ├── README.md # Project documentation
Each student record includes:
- ID
- Name
- Age
- Gender
- Course
- Year/Semester
- Contact
javac StudentManagementSystem.java