0 votes
1 answer
21
0 votes
1 answer
22
0 votes
1 answer
23
void main( ) { int a=3,b=1; if( b>a, a>b) printf(“%d”, b); else printf(“%d”, a++); }"Two things are infinite: the universe and human stupidity; an...
0 votes
1 answer
24
void main( ) { int a=0,b=2; if(a++, b , b) printf(“%d %d”, a, b); else printf(“%d %d”, b, a); }"In the middle of difficulty lies opportunity."
0 votes
2 answers
25
Ratio of land and water on "earth is 1 : 2. In northern hemisphere, the ratio is 2 : 3. What is the ratio in Southern hemisphere.A] 2:11B] 4:11C] 3:11D] 5:11
0 votes
1 answer
26
Two men start together to walk to a certain destination, one at 3 kmph andanother at 3.75 kmph. The latter arrives half an hour before the former. Whatis the distance?A) ...
1 votes
1 answer
27
int main() { char boolean[][6]={"TRUE","FALSE"}; printf("%s",boolean[(unsigned int)-1 == ~0]); }
0 votes
1 answer
28
void main( ){ int i='4'; switch(4){ case 4: printf(“4”); break; case -4: printf(“-4”); break; case default : printf(“D”); } }1) 4 ...
0 votes
1 answer
29
0 votes
2 answers
30
0 votes
1 answer
31
6 votes
5 answers
32
A locked database file can beAccessed by only one userModified by users with the correct passwordUsed to hide sensitive informationUpdated by more than one user
10 votes
2 answers
33
$\begin{vmatrix} 265 && 240 && 219 \\ 240 && 225 && 198 \\ 219 && 198 && 181 \\ \end{vmatrix} = $$779$$679$$0$$256$
8 votes
1 answer
35
A root $\alpha$ of equation $f(x)=0$ can be computed to any degree of accuracy if a 'good' initial approximation $x_0$ is chosen for which$f(x_0) 0$$f (x_0) f''(x_0) 0$...
6 votes
1 answer
36
Substitution of values for names (whose values are constants) is done inLocal optimizationLoop optimizationConstant foldingStrength reduction
8 votes
3 answers
37