He created email for ARPANET. He created the @ sign to connect a username on a network.
WOOHOO! my turn:
Assume the following relation:
EMP_DEPT(Emp_Name, SS_No, Date_of_Birth, Extension, Dept_No, Dept_Name, Dept_Manager)
Constraints: SS_No -> Emp_Name
SS_No -> Date_of_Birth
SS_No -> Extension
SS_No -> Dept_No
Dept_No -> Dept_Name
Dept_No -> Dept_Manager
Which of the following is normalized to the highest degree:
A.
EMP_DEPT(Emp_Name, SS_No, Date_of_Birth, Extension, Dept_No, Dept_Name, Dept_Manager)
B.
EMPLOYEE(SS_No, Emp_Name, Date_of_Birth, Extension, Dept_No)
DEPT(Dept_No, Dept_Name, Dept_Manager)
C.
EMPLOYEE(SS_No, Emp_Name, Date_of_Birth, Extension)
DEPT(Dept_No, Dept_Name, Dept_Manager)
EMP_DEPT(SS_No, Dept_No)
D.
EMPLOYEE(SS_No, Emp_Name, Date_of_Birth, Extension)
DEPT(Dept_No, Dept_Name, Dept_Manager, SS_No)
**************
take baton if you want it