image not found

Oops! That page can't be found.


Directions to Solve

In each question below a sentence broken into five or six parts. Join these parts to make a meaningful sentence. The correct order of parts is the answer.

Q1: 1. seen 2. going 3. you 4. him 5. have 

A 32514

B 35142

C 35124

D 53124

E 35214

Q2: What will be the output of the program ?
#include<stdio.h>

int main()
{
    static int arr[] = {0, 1, 2, 3, 4};
    int *p[] = {arr, arr+1, arr+2, arr+3, arr+4};
    int **ptr=p;
    ptr++;
    printf('%d, %d, %d\n', ptr-p, *ptr-arr, **ptr);
    *ptr++;
    printf('%d, %d, %d\n', ptr-p, *ptr-arr, **ptr);
    *++ptr;
    printf('%d, %d, %d\n', ptr-p, *ptr-arr, **ptr);
    ++*ptr;
    printf('%d, %d, %d\n', ptr-p, *ptr-arr, **ptr);
    return 0;
}

A 0, 1, 2
1, 2, 3
2, 3, 4
3, 4, 5

B 0, 0, 0
1, 1, 1
2, 2, 2
3, 3, 3

C 1, 1, 2
2, 2, 3
3, 3, 4
4, 4, 1

D 1, 1, 1
2, 2, 2
3, 3, 3
3, 4, 4

  

Q3: Teak wood is suitable for

A furnitures

B sports articles

C all the above.

D railway sleepers

Q4: The resistance of a dc galvanometer is 20 Ω. A current of 10 mA causes full scale deflection. To convert it into 0-300 V voltmeter, we have to use a series resistance of

A 30000 Ω

B 6000 Ω

C 29980 Ω

D 15 Ω