Big Java, Binder Ready Version: Early Objects
Big Java, Binder Ready Version: Early Objects
6th Edition
ISBN: 9781119056447
Author: Cay S. Horstmann
Publisher: WILEY
Expert Solution & Answer
Book Icon
Chapter 12, Problem 12RE

Explanation of Solution

“classes”, “responsibilities”, “collaborators” CRC card:

  • A CRC card defines a class, its responsibilities, and its collaborating classes.
  • The classes that are discovered are,
    • Grade
    • Student
    • Course
    • Reportcard
  • The purpose of the program is to generate a student report card.
  • “student_id”, and “course_id” are the attributes of “Student” class.
  • “grade” is not the attribute of the “Student” class.
  • Just as in the printed report card, assume have a class “Grade” that records grades, and the grade point average.
  • Make the report card responsible for formatting the report.
  • Records that responsibility on a CRC card as follows,
Reportcard
format the report
  • The report card format itself as follows,
    • It must format the student id, course id, format all grades, and then add grade point average,
    • The responsibility of “Student” class is to format student id, and this is the second CRC card,
Student
format the student id
  • The report card also needs to calculate the grade point average.
  • To get the grade, it should ask the Student about course id of each course.
  • To get the grade point average, it should ask course for the grades.
Course

get the course_id

get the grade

Grade

format the grade

get grade point average

Course
  • Finally, the report card should be populated with courses and grades, so that it makes sense to format the report. The final CRC card is as follows,
Reportcard

format the report

add a grade and grade point average

Grade

Student

Course

UML diagram:

  • In student report card, the “Student” class collaborates with the “Course” and “Reportcard” classes. The “Course” class collaborates with the “Grade” class.
  • The “Student” class aggregates “Reportcard”, and “Course” classes.
  • The “Course” class aggregates “Grade” class.
  • The Unified Modeling Language (UML) diagram for the student report card is as follows,

“javadoc” comments:

A set of “javadoc” comment for the student report card is as follows,

/**

    Describes a student for a set of grades

*/

public class Student

{

    /**

         Add grades for a grade point average to this student...

Blurred answer
Students have asked these similar questions
Lab 07: Java Graphics (Bonus lab) In this lab, we'll be practicing what we learned about GUIs, and Mouse events. You will need to implement the following: ➤ A GUI with a drawing panel. We can click in this panel, and you will capture those clicks as a Point (see java.awt.Point) in a PointCollection class (you need to build this). о The points need to be represented by circles. Below the drawing panel, you will need 5 buttons: о An input button to register your mouse to the drawing panel. ○ о о A show button to paint the points in your collection on the drawing panel. A button to shift all the points to the left by 50 pixels. The x position of the points is not allowed to go below zero. Another button to shift all the points to the right 50 pixels. The x position of the points cannot go further than the You can implement this GUI in any way you choose. I suggest using the BorderLayout for a panel containing the buttons, and a GridLayout to hold the drawing panel and button panels.…
If a UDP datagram is sent from host A, port P to host B, port Q, but at host B there is no process listening to port Q, then B is to send back an ICMP Port Unreachable message to A. Like all ICMP messages, this is addressed to A as a whole, not to port P on A. (a)  Give an example of when an application might want to receive such ICMP messages. (b)  Find out what an application has to do, on the operating system of your choice, to receive such messages. (c)  Why might it not be a good idea to send such messages directly back to the originating port P on A?
Discuss how business intelligence and data visualization work together to help decision-makers and data users. Provide 2 specific use cases.
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education