3 answers
4
R(A,B,C) is a relation.Which of the following don't have dependency preserving BCNF decomposition?A->B, B->CA->B,B->C,C->AAB->C,C->ANone of these
4 answers
5
2 answers
6
Database file consist 1250 records. Block can hold either 3 records or (10 keys, 11 pointers). The maximum number of levels of index required for sparse B+ tree index for...
1 answer
7
In a relational algebra ∩ is not a basic operator, to make it basic only relational operator we should have areX, – X, UU, –
1 answer
12
Consider the relation $R\left ( A,B,C,D,E \right )$$A\rightarrow BC$$C\rightarrow E$$B\rightarrow D$$E\rightarrow A$Total number of superkeys present in relation will be ...
11 answers
16
1 answer
18
What will be the output of the below C program?#include <stdio.h int xyz(int b) { return (b ); } int main() { int a = xyz(12); printf("%d", ++a); return 0; }(a)10 (b)11 (...
2 answers
20
#include <stdio.h>int main(){ int a=9; printf("%d %d %d",++a,a++,++a); return 0;}what is the output?According to me it should be 12 10 10
1 answer
22
What is the output of given program?#include<stdio.h>int main(){ int x; x = 4 8 ? 5!= 1<5 == 0 ? 1:2:3; printf("%d",x); return 0;}option a. 1 b.2 c.3 d.compi...