Consider the relational database with the following four schemas and their respective instances: \[ \text{Student(sNo, sName, dNo)} \text{ }\text{Dept(dNo, dName)} \\ \text{Course(cNo, cName, dNo)} \text{ } \text{Register(sNo, cNo)} \]

SQL Query:
SELECT * FROM Student AS S WHERE NOT EXIST
(SELECT cNo FROM Course WHERE dNo = “D01”
EXCEPT
SELECT cNo FROM Register WHERE sNo = S.sNo) The number of rows returned by the above SQL query is___________.
SQL Query: \[ \text{SELECT FROM Student AS S WHERE NOT EXIST} \] \[ \left( \text{SELECT cNo FROM Course WHERE dNo = "D01"} \right) \] \[ \text{EXCEPT SELECT cNo FROM Register WHERE sNo = S.sNo} \] The number of rows returned by the above SQL query is: \[ \boxed{2}. \]
Consider the following relational schema along with all the functional dependencies that hold on them.
R1(A, B, C, D, E): { \( D \rightarrow E \), \( EA \rightarrow B \), \( EB \rightarrow C \) }
R2(A, B, C, D): { \( A \rightarrow D \), \( A \rightarrow B \), \( C \rightarrow A \) }
Which of the following statement(s) is/are TRUE?