In: Computer Science
ANS { }
ANS { }
ANS: ________
Display the Cartesian product (4 tuples)
ANS { ('ab', 'ab'), ('ab', 22) (22, 'ab'), (22, 22) }
Explanaiton: All concatenations
Display one relation with 3 tuples
ANS { ('ab', 22) (22, 'ab'), (22, 22) }
Explanaiton: Any 3 tuples of the previous answer
Using the formula nCr, how many relations are there with 2 tuples
Picking 2 from 4 tuples
4C2 = 4! / (2! 2!) = 6
Please up vote
ANS: ________