List-I (Sentences) | List-II (Words) |
(A) She was able to give a _________ explanation in the court for her presence near the crime scene. | (I) collaborate/d |
(B) The Rockland Hospital ___________ with AIIMS to conduct a free cancer screening camp. | (II) corroborate/ing |
(C) Though she has shown only 4% improvement in achieving her target yet her efforts are __________. | (III) credible |
(D) The doctors give the prognosis by __________ their diagnosis with several tests. | (IV) creditable |
LIST I | LIST II | ||
A | Our Principal List | I | can face the land mafia |
B | Only a dare devil | II | to be fair and square in business |
C | My father advised me | III | died in harness |
D | Due to sheer negligence | IV | you have got yourself into a mess |
LIST I | LIST II | ||
A | Some speakers merely | I | brought to book for his negligence |
B | The manager was | II | by dint of hard work |
C | Sheela achieved success | III | bear the brunt of inflation |
D | The poor have to | IV | beat the air in their speech while preaching |
What is the output of the following C code?
void foo(int *p, int x) { *p = x; } void main() { int *z; int a = 20, b = 25; z = a; // Incorrect: Should be z = a; foo(z, b); printf("%d", a); }
Issue: The statement z = a;
is invalid because a
is an integer, and z
is a pointer.
Which of the following is the greatest? \[ 0.6, \ 0.666, \ \frac{5}{6}, \ \frac{2}{3} \]
Consider the following C code:
int main() { sum = 0; for (n = 1; n < 3; n++) { n++; sum += g(f(n)); } printf("%d", sum); } int g(n) { return 10 + n; } int f(n) { return g(2 * n); }
What is the output?