edited by
14,873 views
30 votes
30 votes

Given the following relation instance.

$$\begin{array}{|l|l|}\hline \text{X} & \text{Y} & \text{Z} \\\hline   \text{1} & \text{4} & \text{2} \\   \text{1} & \text{5} & \text{3} \\  \text{1} & \text{6} & \text{3} \\ \text{3} & \text{2} & \text{2} \\\hline \end{array}$$

Which of the following functional dependencies are satisfied by the instance?

  1. $XY \rightarrow Z$ and $Z \rightarrow Y$
  2. $YZ \rightarrow X$ and $Y \rightarrow Z$
  3. $YZ \rightarrow X$ and $X \rightarrow Z$
  4. $XZ \rightarrow Y$ and $Y \rightarrow X$
edited by

5 Answers

Answer:

Related questions

35 votes
35 votes
5 answers
2
29 votes
29 votes
2 answers
3
Kathleen asked Sep 14, 2014
15,078 views
The value of $j$ at the end of the execution of the following C program:int incr (int i) { static int count = 0; count = count + i; return (count); } main () { int i, j; ...
41 votes
41 votes
5 answers
4