Name: _____________________________ 6 Digit StudentID: ___ ___ ___ ___ ___ ___

Worksheet 11: Student Credits

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 = ...;

 

 

 

 

 

 

 

 

 

Post Lecture

Synthesize today's class session

 

 

What is unclear?