Most answered questions in Unknown Category

1 votes
2 answers
105
Find the normalization transformation that maps a window whose lower left corner is at $(1,1)$ and upper right corner is at $(3,5)$ onto a viewpoint that is the entire no...
0 votes
2 answers
106
Which of the following is not a Clustering method?K-Means methodSelf Organizing feature map methodK- nearest neighbor methodAgglomerative method
1 votes
2 answers
107
Which speed up could be achieved according to Amdahl's Law for infinte number of processes if $5\%$ of a program is sequential and the remaining part is ideally parallel?...
0 votes
2 answers
108
0 votes
2 answers
109
Two atomic operations permissible on Semaphores are _________ and ________.wait, stopwait, holdhold, signalwait, signal
0 votes
2 answers
112
Match the following with respect to RDBMS :$\begin{array}{clcl} \text{(a)} & \text{Entity integrity} & \text{(i)} & \text{enforces some specific business rule that do not...
0 votes
2 answers
113
The following numbers are inserted into an empty binary search tree in the given order: $10,1,3,5,15,12,16$. What is the height of the binary search tree?$3$$4$$5$$6$
0 votes
2 answers
114
In RDBMS, different classes of relations are created using ________ technique to prevent modification anomolies.Functional DependenciesData integrityReferential integrity...
0 votes
2 answers
115
0 votes
2 answers
117
$\text{prtdata}$ is a pointer to a data type. The expression $^*\text{prtdata}++$ is evaluated as (in C++)$^*(\text{prtdata++})$$(^*\text{prtdata})++$$^*(\text{prtdata})+...
0 votes
2 answers
118
Negation of the proposition $\exists \: x \: H(x)$ is$\exists \: x \: \neg \: H(x)$$\forall \: x \: \neg \: H(x)$$\forall \: x \: H(x)$$\neg \: x \: H(x)$
0 votes
2 answers
119
two cards are drawn from a well shuffled deck of 52 cards one after the other without replacement the probabaility of first card being a spade and second a black kings i...
3 votes
2 answers
120
Is this schedule view serializable ??R1(x),R1(y),W1(x),R2(y),W3(y),W1(x),R2(y)