Depratment table(D):
---------------------------
1 Mathematics
1 Physics
student table(S):
------------------------------------
1 Navin 1
2 Ravi 2
3 Gitu 1
Now, we are taking the cross product of 2 tables: So, result contains following columns:
S.roll_no S.name S.dept_id D.dept_id D.dept_name
----------------------------------------------------------------------------------------------------------------
Combine the columns only when its join operation because join operation is considered as set operation on column names.
So, (D) is correct answer.