0 answers
3
2 answers
5
Consider the following table.Create table TEST (one integer,two integer,primary key(one, two),check (one between 1 and 10),check (two between 1 and 5));How many tuples at...
1 answer
7
The minimum number of literal obtained on simplifying the expression ABC + A’C + AB’C + A’BC are _______
1 answer
8
1 answer
9
A Professor tells 3 Jokes in his maths class each year. How large a set of jokes does the professor need in order never to repeat the exact same triple of jokes over a pe...
6 answers
11
2 answers
12
How many reflexive relations are there on a set with $4$ elements?$2^4$$2^{12}$$4^2$$2$
3 answers
13
What is the output of the following $C$ program?# include <stdio.h main () { int i, j, x=0; for (i=0; i<5; ++i) for (j=0; j<i; ++j) { x+=(i+j-1); break; } printf(“%d”...