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. at 2. it 3. take
4. once 5. away  

A 23514

B 53214

C 32514

D 42315

E 14352

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

int main()
{
    void fun(int, int[]);
    int arr[] = {1, 2, 3, 4};
    int i;
    fun(4, arr);
    for(i=0; i<4; i++)
        printf('%d,', arr[i]);
    return 0;
}
void fun(int n, int arr[])
{
    int *p=0;
    int i=0;
    while(i++ < n)
        p = &arr[i];
    *p=0;
}

A 2, 3, 4, 5

B 0, 1, 2, 3

C 3, 2, 1 0

D 1, 2, 3, 4

  

Q3: Pick up the correct statement from the following:

A None of the above.

B The low voltage porcelain is prepared by dry process

C The high voltage porcelain is prepared by dry process

D The low voltage porcelain is prepared by wet process

Q4: Assertion (A): A semiconductor strain gauge is more accurate than a resistance strain gauge. Reason (R): The gauge factor of a semiconductor strain gauge is about 100 where as the gauge factor of a resistance strain gauge is only about 2.

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

B A is false R is true

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

D A is true R is false