answers

  1. Student
    • Attributes:
      • StudentID (Primary Key)
      • Name
      • DateOfBirth
      • Email
      • PhoneNumber
      • Address
  2. Course
    • Attributes:
      • CourseCode (Primary Key)
      • Title
      • CreditHours
      • DepartmentID (Foreign Key)
  3. Instructor
    • Attributes:
      • EmployeeID (Primary Key)
      • Name
      • Designation
      • DepartmentID (Foreign Key)
      • ContactDetails
  4. Enrollment
    • Attributes:
      • EnrollmentID (Primary Key)
      • StudentID (Foreign Key)
      • CourseCode (Foreign Key)
      • EnrollmentDate
      • Grade
  5. Department
    • Attributes:
      • DepartmentID (Primary Key)
      • Name
      • HeadOfDepartment (Foreign Key referencing Instructor)
  6. Class Schedule
    • Attributes:
      • ScheduleID (Primary Key)
      • CourseCode (Foreign Key)
      • RoomNumber
      • Building
      • Day
      • Time
Scroll to top