0% completed
Student_ID | Student_Name | Course_ID | Instructor |
---|---|---|---|
101 | Alice | C101 | Dr. Smith |
102 | Bob | C101 | Dr. Smith |
103 | Charlie | C102 | Dr. Brown |
Student_ID → Student_Name
Course_ID → Student_ID
Student_ID → Instructor
Course_ID → Instructor
A → B
and B → C
, what is the closure of {A}
?{A, B}
{A, C}
{A, B, C}
{A}
A → B
{A, B} → C
{A, B} → B
A → A
Emp_ID | Dept | Dept_Location |
---|---|---|
1 | HR | New York |
2 | IT | Chicago |
3 | HR | New York |
Emp_ID → Dept
Dept → Dept_Location
Dept → Emp_ID
Emp_ID → Dept_Location
.....
.....
.....