recategorized by
53 views
0 0 votes

IIT Bombay | MS/PhD Admission Test Dec. 2024 | Question-14

In case of multiple of the choices being correct, select all for full marks. Given a schemar $(\mathrm{A}, \mathrm{B}, \mathrm{C}, \mathrm{D}, \mathrm{E}, \mathrm{F})$ and the functional dependencies $A \rightarrow B, A B \rightarrow C, B D \rightarrow E, F \rightarrow A$, which of the following functional dependencies are implied: 

  1. $A E \rightarrow F$
  2. $A \rightarrow C$
  3. $A D \rightarrow E$
  4. $A B F \rightarrow E$

     

Please log in or register to answer this question.

Position:
Show:

Related questions

0 0 votes
0 0 answers
118
118 views
Shubham Sharma 2 asked Dec 8, 2025
118 views
Consider the following lex script%% a(b|cd)*b {printf("%s#",yytext); } a(b|cd)*cd {printf("%s#",yytext); } a+b*d {printf("%s#",yytext); }Tokenize the given input strings ...
0 0 votes
0 0 answers
119
119 views
Shubham Sharma 2 asked Dec 8, 2025
119 views
Consider the following augmented grammar:$\text{S'} \rightarrow \text{S}$$\text{S} \rightarrow \text{A a}$$\text{A} \rightarrow \text{B C}$$\text{A} \rightarrow \text{B C...
0 0 votes
0 0 answers
122
122 views
Shubham Sharma 2 asked Dec 8, 2025
122 views
Consider the syntax-directed translation (SDT) scheme, in the form of the rules listed below, to generate three-address code for a simple expression grammar. The attribut...
0 0 votes
0 0 answers
82
82 views
Shubham Sharma 2 asked Dec 8, 2025
82 views
Consider the following C program. Assume the presence of necessary header files.int Sub(int i, int j) { return i - j; } int Mul(int i, int j) { return i * j; } int Delta(...