J1 L P0021
J1 L P0021
P0021LOC:350Slot(s):5
Title
Create a Java console program to manage students.
Background Context
Write a program to manage information of student. The program implements
terminology of Object Oriented Programming (OOP) paradigm. OOP is one of the best
choosing ways to design software program.
In this assignment, we will use ArrayList to store list of student. In fact,
ArrayList is popular used to manipulate with data. ArrayList provides some useful
methods, such as: add(), remove(), sort() ., etc.
Program Specifications
A student information consists of ID, Student Name, Semester, Course Name (There
are only three courses: Java, .Net, C/C++). The program allows use to create list
of student, update/delete student information. On the other hand, use can search
student(s) and sort result by student name
Student nameCourseNguyen Van AJavaNguyen Van AJavaNguyen Van B.NetNguyen Van BJava
The report as below:
Nguyen Van A | Java | 2
Nguyen Van B | Java | 1
Nguyen Van C | Java | 1
Technical Requirements
1. Using Object-Oriented programming style
2. Use only core Java functions and classes.
Guidelines