Urgenthomework logo
UrgentHomeWork
Live chat

Loading..

7COM1025 Semester B Coursework

7COM1025 Semester B Coursework

  • Implement a system according to the following description
  • The University Sports Centre (USC) needs software for managing the bookings of group exercise classes made by the students.
  • The centre offers different group exercise classes on both Saturday and Sunday.
  • The classes could be Yoga, Zumba, Aquacise, Box Fit, Body Blitz, etc. Each class can accommodate 4 students at most.
  • For either day (Saturday or Sunday), there are 3 classes per day: 1 in the morning, 1 in the afternoon, 1 in the evening.
  • The price of each class is different. The class price for the same exercise will remain the same even if they run at a different time.
  • A student who wants to book a class needs to first check the timetable and then select a class on a day. A student can check the timetable by two ways:
  • one is by specifying the date (must be a Saturday or Sunday);
  • the other is by specifying the exercise name.
  • Students are allowed to change a booking, provided there are still spaces available for the newly selected class. A student can book as many classes as they want so long as there is no time conflict.
  • After each group exercise class, students are able to write a review of the class they have attended and provide a numerical rating of the class ranging from 1 to 5 (1: Very dissatisfied, 2: Dissatisfied, 3: Ok, 4: Satisfied, 5: Very

Satisfied). The review and rating information will be recorded in the system.

  • After four weeks (four weekends), the software system must print:
  • a report containing the number of students per group exercise class on each day, along with the average rating;
  • a report containing the group exercise which has generated the highest income, counting all the same exercise classes together.
  • In your final deliverable, provide data covering at least 4 different types of group exercise classes, 10 students, and 20 reviews (with rating), which can then be displayed in the output reports. You need to design at least 8 weekends of timetable (i.e., 48 classes) by yourself.
  • Note: you do not need any kind of external database for this program. The final program should be self-contained. The reports can be printed to System.out, or output to a suitable GUI interface. You also do not need any kind of security protocol. All the students may be assumed to be pre-registered.
  • Your tasks:
    1. Create a class diagram, highlighting the main Java classes in the system and their associations. Include the attributes and key methods.
    2. Implement the system, using Junit tests to confirm the functionality.
    3. Write a short report (ideally no more than 8 pages) explaining your program. Discuss:
    4. Any assumptions made about the system, in addition to the above description.
    5. The overall structure and design of your program.
    6. Any design patterns/design principles used.
    7. The JUnit tests.
    8. Any refactoring used during the development of the system.
  • Deliverables:
    1. Develop your code using bitbucket. Send your username to Hui Cheng by emailing to: h.cheng2@herts.ac.uk, and add “huicheng” to your project.
    2. Submit to StudyNet:
      1. Your report with the UML class diagrams and snapshots

of your version control commit messages in a single PDF document.

  1. An executable jar file, demonstrating your final system. The system should have some data preloaded (as described above).
  2. A zip-file containing the source code of your project.

No references needed for your report.

  • We will test your program. Source code will be checked to confirm both that the work has been implemented by yourself, and its design.
  • UML Class diagram. (10 marks)
  • Working jar file. (40 marks)
  • Use of version control, with suitable commit messages. (5 marks)
  • Appropriate design and implementation. (30 marks)
  • Use of JUnit testing. (10 marks)
  • Report format and writing quality. (5 marks)
  • Ideally, your program will provide at least 5 functions in the format of command line interface (you can use GUI if you wish, but no extra marks given):
    1. Book a group exercise class
    2. Change a booking
    3. Attend a class
    4. Monthly class report
    5. Monthly champion class report

Don’t forget that you program should be able to exit whenever there is no other option available.

  • Book a group exercise class
  • All are group classes and up to 4 students are allowed for each class.
  • The system will prompt the user to select the way to check the timetable, one is by specifying the date and the other is by specifying the exercise name.
  • If the user selects to specify the date, all three classes on that day will be displayed on the screen.
  • If the user selects to specify the exercise name, all the classes of that exercise in the timetable will be displayed on the screen.
  • The user will then book into one class. If the new booking will not violate the class capacity constraint (i.e., the total student number is not more than 4), the booking is successful. Otherwise, the booking is not successful and the program returns to the main interface.
  • Ideally, you should provide two months’ classes (covering 8 weekends) and this should be timetabled by yourself including the price information.
  • No repeated booking (i.e., one student cannot book the same class twice)
  • Change a booking
  • The system will prompt the user to specify which booking they want to make a change (maybe through a booking ID)
  • The user will select a new class (can be different type of exercise). The system will do the same checking on the capacity constraint. If no violation, the change is successful. Note that this is a booking change so the same booking ID will be kept. If there is a violation, the change is not successful and the user needs to select another new class or the program returns to the main interface.
  • Do not forget to release one place from the previously booked class if the change is successful.
  • Cancelling a booking can be incorporated in this function. Don’t forget to release one place if cancelling is successful. The booking ID of a cancelled booking will not be reused.
  • Attend a class (writing a review and providing a numerical rating can be incorporated in this function)
  • A review are a few sentences/words about the class
  • Rating is to give a number ranging from 1 to 5.
  • Ideally, each booking will have a status. When it is booked (before attending), the status is "booked". When it is attended, the status is changed to "attended". When it is changed but not attended, the status is "changed". When it is cancelled, the status is “cancelled”.
  • Monthly class report
  • Ideally, when the user selects this function, the system will prompt the user to input a month number (e.g., 12 for December). This report will then list the statistics for each class in the 4 weekends of that month:
  • the number of students, along with the average rating of the class;
  • Monthly champion class report
  • Ideally, when the user selects this function, the system will prompt the user to input a month number (e.g., 12 for December).
  • a report showing which group exercise class has generated the highest income, counting all the same types of exercise classes together.
  • You need to show the group exercise class name and the total income amount

Other points

  • For “data covering at least 4 different types of group exercise classes, 10 students, and 20 reviews (with rating)", you can hard code the data into your program or you can read the data from an external file.
  • UML diagram is included in your report, not a separate file.
  • In the report, provide some snapshots of your commit messages to show that you have used Version Control.
  • For JUnit test, since there are only 10 marks assigned to it, you can just pick up about two key methods (not getter or setter methods) from each class and then write the test cases for them. In total, you should have 10 test cases. To save your time, you don't need to write test cases for every method in every class.
Copyright © 2009-2023 UrgentHomework.com, All right reserved.