Question
Easy
Consider a relation R(A, B, C). Which of the following statement is not true according to inference rules for functional dependencies ?
1
If A → B and B → C, then A → C
2
If AB → C, then A → B and B → C
3
If A → B and A → C, then A → BC
4
If A → B, then AC → BC
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Database Management System (DBMS) & SQL
Topic: Database Concepts
Correct Answer
Option B
Explanation
The correct option is (2): The statement "If AB → C, then A → B and B → C" is not true according to the inference rules for functional dependencies (FDs), also known as Armstrong's Axioms. The fundamental principle of FDs is that you can decompose the right-hand side (the dependent attributes), but not the left-hand side (the determinant attributes). The functional dependency $AB \\to C$ only guarantees that the…Read More
Similar Questions from HTET Exam - Level 3 - Year 2018
Question 1
Easy
Source :
HTET 2018
Let QSPTRU and PQSRTU are in-order traversal and pre-order traversal respectively for a given binary tree T. What will be the post-order traversal T?
Chapter :
Data Structures (Through C++)
Topic :
Data Structure Concepts
Question 2
Easy
Source :
HTET 2018
Let the postfix expression 3, 2, +, 7, *, 6, 5, +, 4, *, is being evaluated using a stack. What are the values on…
Chapter :
Data Structures (Through C++)
Topic :
Stack
Question 3
Easy
Source :
HTET 2018
In HTML Version-5, the _______ declaration tag is used by the web browser to understand the version of the HTML:
Chapter :
Web Designing using HTML
Topic :
HTML Basics
Question 4
Easy
Source :
HTET 2018
In C++, which of the following operator cannot be overloaded ?
Chapter :
Object-Oriented Programming (C++)
Topic :
OOP Concepts