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. of 2. we 3. heard
4. him 5. had  

A 52341

B 25341

C 25431

D 25314

E 42351

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

int main()
{
    static int a[2][2] = {1, 2, 3, 4};
    int i, j;
    static int *p[] = {(int*)a, (int*)a+1, (int*)a+2};
    for(i=0; i<2; i++)
    {
        for(j=0; j<2; j++)
        {
            printf('%d, %d, %d, %d\n', *(*(p+i)+j), *(*(j+p)+i), 
                                    *(*(i+p)+j), *(*(p+j)+i));
        }
    }
    return 0;
}

A 1, 2, 3, 4
2, 3, 4, 1
3, 4, 1, 2
4, 1, 2, 3

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

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

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

  

Q3: Second class bricks

A are of dark brown colour

B are under burnt.

C produce a metallic sound when struck

D are well burnt

Q4: Assertion (A): Maxwell bridge is for measuring inductance of medium magnitude. Reason (R): In Maxwell's bridge the unknown inductance is measured by comparing it with a capacitance.

A A is true R is false

B Both A and R are true and R is correct explanation of A

C A is false R is true

D Both A and R are true but R is not correct explanation of A