The University Registrar has assigned you the task of ensuring that every student is carrying the appropriate number of credits.
The database is organized by courses.
Given the API below write a combination of high-level design document and pseudocode to solve this problem.
final int MINIMUM_ALLOWED_CREDITS = ...;
class Course {
List<Student> students();
int numCredits();
}
Course[] courses = ...;