Computer Science
Which of the following statements is FALSE about keys in a relational database?
- Any candidate key is eligible to become a primary key.
- A primary key uniquely identifies the tuples in a relation.
- A candidate key that is not a primary key is a foreign key.
- A foreign key is an attribute whose value is derived from the primary key of another relation.
Related Questions
Consider the code given below:
b = 100 def test(a): ............... #missing statement b = b + a print(a, b) test(10) print(b)
Which of the following statements should be given in the blank for #Missing Statement, if the output produced is 110?
- global a
- global b = 100
- global b
- global a = 100
State whether the following statement is True or False:
An exception may be raised even if the program is syntactically correct.
Fill in the blank:
In case of …………… switching, before a communication starts, a dedicated path is identified between the sender and the receiver.
Which of the following functions changes the position of file pointer and returns its new position?
- flush()
- tell()
- seek()
- offset()