Composite and multi-valued attributes can be nested to any number of levels. Suppose we want to design an attribute for a STUDENT entity type to keep track of previous college education. Such an attribute will have one entry for each college previously attended, and this entry is composed of: college name, start and end dates, degree entries (degrees awarded at that college, if any), and transcript entries (courses completed at that college, if any). Each degree entry is formed of degree name and the month and year it was awarded, and each transcript entry is formed of a course name, semester, year, and grade. Design an attribute to hold this information. Use the conventions of Figure 7.5.

What will be an ideal response?


```

{ PreviousEducation ( CollegeName, StartDate, EndDate,

{ Degree (DegreeName, Month, Year) },

{ Transcript (CourseName, Semester, Year, Grade) } ) }

```

Computer Science & Information Technology

You might also like to view...

What are the key terms of the GNU General Public License?

What will be an ideal response?

Computer Science & Information Technology

Whereas ____ is/are designed to help a person carry out a task such as word processing or sending e-mail, ____ is/are dedicated to the computer's internal operation.

A. operating systems, system software B. operating systems, application software C. application software, system software D. system software, application software

Computer Science & Information Technology

The ____ of two tables is a table containing every row that is in either the first table, the second table, or both tables.

A. intersection B. union C. minus D. difference

Computer Science & Information Technology

?_____ are the basic required Hypertext Markup Language (HTML) elements.

A. ?meta B. ?header C. ?main D. ?head

Computer Science & Information Technology