Step 1: Evaluate Statement S1.
A relation schema can have multiple foreign keys. For example, a table may reference multiple other tables, each via a different foreign key. Hence, S1 is false.
Step 2: Evaluate Statement S2.
A foreign key can reference the same relation (self-referencing foreign key), as in hierarchical or recursive relationships (e.g., an \texttt{Employee} table with a \texttt{ManagerID} referencing \texttt{EmployeeID}). Hence, S2 is false.
Step 3: Conclusion.
Since both S1 and S2 are false, the correct option is (D).
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?