Design a course registration system

Assignment Help JAVA Programming
Reference no: EM13716

Create an application which represents a simplified course registration system using ArrayLists and HashMaps.

Define a class called Student with private attributes representing the student id (an int), the student's name (a String) and an ArrayList called regCourses containing Course objects that the student is registered in.

  • Create get methods for all 3 attributes.
  • Create a constructor that initializes attributes id, and name from incoming parameters, and initializes attribute regCourses to an empty ArrayList.
  • Create a toString() method that returns a string representing a student using the format as shown in the 2 examples below (Note: There is no comma at the end of the course lists):   

Define a class called Course with private attributes representing the department in which the course is offered (a Department object), the course code (e.g., 1406), the course name (e.g., "Introduction to Computer Science II") and a classList ArrayList containing Student objects who are registered in the course.

  • Create get methods for attributes code, department and classList.
  • Create a constructor that initializes attributes code, department and name from incoming parameters, and initializes classList to an empty ArrayList.
  • Create a toString() method that returns a string with the course code, course name and the number of people registered in the course in a format as shown in the following examples:

COMP1406 Introduction to Computer Science II, Enrollment = 238 
HIST1001 Canadian History, Enrollment = 12
 
Define a class called Department with private attributes representing the name (e.g., "Computer Science"), the departmental id (e.g., "COMP"), a courseList HashMap representing all courses offered by this department (with a course code as key and Course object as value) and a studentList ArrayList representing all students taking courses in this department.

  • Create get methods for all 4 attributes.
  • Create a constructor that creates a department whose name and id are specified as parameters and then also initializes the hashmap and array list to be empty.
  • Create a toString() method that shows the name and number of courses offered and students

registered in the department as follows:
School of Computer Science:  47 courses, 387 students
Make sure that ALL your code compiles at this point.   Test your code with the following program:

 public class TestProgram1 {
    public static void main(String[] args) {
     Department scs = new Department("School of Computer Science", "COMP");
  Department his = new Department("History", "HIST");
  System.out.println(scs);
  System.out.println(his);
 
  Course  c1406 = new Course(1406, scs, "Introduction to Computer Science II");
  Course  c1001 = new Course(1001, his, "Canadian History");
  System.out.println(c1406);
  System.out.println(c1001);
 
  Student matt = new Student(100239872, "Matt Adore");
  Student june = new Student(100125673, "June Bug");
  System.out.println(matt);
  System.out.println(june);
    }
}
 
It should have this output:
 
School of Computer Science: 0 courses, 0 students
History: 0 courses, 0 students
COMP1406 Introduction to Computer Science II, Enrollment = 0
HIST1001 Canadian History, Enrollment = 0
100239872 Matt Adore - Registered Courses: NONE
100125673 June Bug - Registered Courses: NONE 

(2) The "Meat":

1. Write a method in the Department class called offerCourse(Course c) that adds the given course to the department.   You may assume that the course is not already offered.

2. Write a method in the Department class called printCoursesOffered() that displays on the system console a list of all courses offered by the department.   Note that it should show all course information (i.e., use the toString() method).

3. Write a method in the Student class called isRegisteredInCourse(Course c) that returns a boolean which indicates whether or not the given student is registered in the given course.

4. Write a method in the Student class called registerFor(Course c) that causes the student to be registered for the given course.   If the student is already registered in the course, do nothing. Otherwise, update the appropriate Student, Course and Department objects as necessary.

5. Write a method in the Department class called printStudents() that displays on the system console a list of all students who are taking courses in this department.   Note that it should show all student information (i.e., use the toString() method).

6. Write a method in the Department class called isStudentRegistered(Student s) that returns a boolean which indicates whether or not the given student is registered for any course in this department.

7. Write a method in the Department class called studentsRegisteredInCourse(int code) that returns an ArrayList containing all students who are registered in the course with the given code.

8. Write a method in the Department class called printStudentsRegisteredInCourse(int code) that uses the method you just wrote to display on the system console a list of all students registered in the given course. This method should show only the id and name of the students.

9. Write a method in the Department class called largestEnrollment() which returns a Course object showing the course with the largest number of registered students. Note that if there are two or more courses with the same largest number, return either one.   You should use the values of the courseList hashmap.   Also, if there are no courses, null should be returned. 
 
10. Write a class (i.e., static) method in the Department class called areClassmates(Student s1, Student s2) which returns a boolean indicating whether or not these two students are taking any courses together. 

Reference no: EM13716

Questions Cloud

Write a vhdl code for soda vending machine : Write a VHDL code that implements the above soda machine. You have to turn in the following: A state diagram showing the implementation of your design. Clearly show all the states and the conditions on which transitions occur.
Suggest a swot analysis for the company : Considering the micro and macro levels of marketing, please suggest a SWOT analysis for the company NutriSystem
London congestion charge : Generate revenue for city are under consideration. The two proposals are London Congestion Charge and Charging for Firefighting.
Cost-benefit analysis : A cost-benefit analysis of electronic medical records in primary care
Design a course registration system : Create an application which represents a simplified course registration system using ArrayLists and HashMaps.
Effect of financial leverage : The Effect of Financial Leverage and working capital management
The role of hr : The role of HR in the 21 st  century is becoming increasingly vital. A significant claim in support of Strategic Human Resource Management is with regards to its contribution to the firm's competitive advantage
Design a program that assigns seats on an airplane : Write a program that allows an instructor to keep a grade book and also design and implement a program that assigns seats on an airplane.
Pulse width modulator : A pulse width modulation (PWM) circuit works by varying the duty cycle of the square wave while keeping the period fixed.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Determine if strings are equal

Complete the recursive method match in the code below which will determine whether or not two strings match.

  Write a recursive instance method

Write a recursive instance method

  World data app

Prepare WorldDataApp project. It implements the NameIndex portion, including creating it in SetupProgram, and searching, viewing and updating it in UserApp program.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Cascading style sheet to a website

Compare and contrast the process of adding JavaScript and a Cascading Style Sheet to a Website. Determine if they can be used simultaneously in a page.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Create a java program

UserApp and PrettyPrintUtility multiple times (supplying different TransData test file names), the AutoTesterUtility PROGRAM will be the driver program.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd