subject

Given the following requirements: The College of Art & Science in Georgia State University has several departments. Each department is managed by a chair, and at least one professor. Professors must be assigned to one, but possibly more departments. At least one professor teaches each course, but a professor may be on sabbatical and not teach any course. Each course may be taught more than once by different professors. We know of the department name, the professor name, the professor employee id, the course names, the course schedule, the term/year that the course is taught, the departments the professor is assigned to, the department that offers the course. do the following:
1) Identify Classes (just names)
2) Find Associations (think about verbs and nouns)
Department
Department
Chair manages
department chair professor course
department managed by is assigned offers
aggregate
chair manages is a
professor assigned to
aggregate teaches
course offered by taught by
3) Draw Rough Class Diagram (Put classes in rectangles and draw the associations connecting the classes)
4) Fill in Multiplicity (Determine the number of occurrences of one class for a single teaches occurrence of the associated class).
5) Identify Attributes (Name the information details (fields) which are relevant to the application domain for each class. Use + for offers public access and – for private access)
6) Identify Behaviors (Specify the operations that are required for each class [assume getter Department manages Chair and setter methods for each attribute]. In this example - we are not given any behaviors, so we will have to make them up. What are some behaviors of these classes?
7) Review your diagram and fine tune it. Look for inconsistencies and errors. Fix them. Make sure you have captured everything required from the domain you are studying - that your diagram is complete.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 23:00
Suppose s, t, and w are strings that have already been created inside main. write a statement or statements, to be added to main, that will determine if the lengths of the three strings are in order by length, smallest to largest. that is, your code should determine if s is strictly shorter than t, and if t is strictly shorter than w. if these conditions hold your code should print (the boolean value) true. if not, your code should print false. (strictly means: no ties) example: if s, t, and w are "cat", "hats", and "skies" your code should print true - their lengths are 3-4-5; but if s, t, and w are "cats" "shirt", and "trust", then print false - their lengths are 4-5-5 enter your code in the box below
Answers: 2
question
Computers and Technology, 24.06.2019 03:30
Auniform resource locator (url) is a formatted string of text that web browsers, email applications, and other software programs use to identify a particular resource on the internet. true false
Answers: 2
question
Computers and Technology, 24.06.2019 07:00
Why do we mark tlc plates with pencil and not with pen
Answers: 2
question
Computers and Technology, 24.06.2019 10:00
Which two technologies support the building of single-page applications?
Answers: 2
You know the right answer?
Given the following requirements: The College of Art & Science in Georgia State University has...
Questions