2 votes
121
Express the quantification ∃!xP(x) using Universal , Existential Quantification and Logical Connectives
2 votes
122
2 votes
123
#include <stdio.h int main() { char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d\n", p); return 0; }(a) 5 (b) 6 (c) 9 (d) none of the above
0 votes
124
3 votes
125
main() { int arr2D[3][3]; printf("%d\n", ((arr2D==* arr2D)&&(* arr2D == arr2D[0])) ); }
1 votes
126
1. const char *a; 2. char* const a; 3. char const *a; -Differentiate the above declarations.
1 votes
127
2 votes
130
Let $f: \mathbb{R} \to \mathbb{R}$ be a differentiable function such that $\displaystyle \lim_{x \to +\infty} f'(x)=1$, then$f$ is bounded $f$ is increasing $f$ is unboun...
1 votes
131
For any real number $c$, the polynomial $x^{3}+x+c$ has exactly one real root.
1 votes
132
$\log x$ is uniformly continuous on $( \frac{1}{2}, \infty)$.
0 votes
133
. A, B are two 8-bit numbers such that A+B < 28 . The number of possible combinations of A and B
2 votes
134
the expression 1*2^3*4^5*6 will be evaluated as a)32^30 b)162^30 c)49152 d)173458
9 votes
135
Let $P(E)$ denote the probability of the occurrence of event $E$. If $P(A)= 0.5$ and $P(B)=1$ then the values of $P(A|B)$ and $P(B|A)$ respectively are$0.5, 0.25$$0.25, 0...
1 votes
136
4 votes
137
Will conflict misses increase if k-way set associative cache is used and we increase the cache capacity?
0 votes
138
(Reference- A first course in probablity by Sheldon Ross [Example 5b and 5c of chapter 1])Q1. Ten children are to be divided into an A team and a B team of 5 each. The A ...
0 votes
139
Match the pairs in the following questions:$$\begin{array}{|ll|ll|} \hline (a) & \text{A heap construction} & (p) & \ \Omega(n\log_{10}n) \\\hline (b) & \text{Construct...
4 votes
140
0 votes
141
In B+ trees, what convention is followed in GATE?A. The node to the left is < than the parent index node and the right node is >= to the parent index node.B. The node to ...
3 votes
142
A clustering index is created when _______. Primary key is declared and ordered No key orderedForeign key orderedThere is no key and no order
10 votes
144
From a circular sheet of paper of radius $30$ cm, a sector of $10\%$ area is removed. If the remaining part is used to make a conical surface, then the ratio of the radiu...
5 votes
145
Five teams have to compete in a league, with every team playing every other team exactly once, before going to the next round. How many matches will have to be held to co...
4 votes
146