A simple Java console application to manage student information. You can add students with their name and age, and display the full list.
Add multiple students interactively. Store student details using ArrayList. View the complete list of students with their names and ages. Update student age if needed (method included in Student class). Handles invalid input gracefully.
Uses Object-Oriented Programming principles (Student class with getters, setters, and methods). Great for learning Java basics: ArrayLists, classes, methods, and exception handling. Designed for console-based interaction; ideal for small-scale student management tasks.