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. him 2. the 3. to 4. charge 5. handover 

A 42531

B 51342

C 41352

D 45231

E 52431

Q2: What will be the output of the program ?
#include<stdio.h>
void fun(int **p);

int main()
{
    int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 8, 7, 8, 9, 0};
    int *ptr;
    ptr = &a[0][0];
    fun(&ptr);
    return 0;
}
void fun(int **p)
{
    printf('%d\n', **p);
}

A 1

B 2

C 3

D 4

  

Q3: Pick up the correct statement from the following:

A Adding 5% to 6% of moisture content by weight, increases the volume of dry sand from 18% to 38%

B The bulking of fine sand is more than that of coarse sand

C If the percentage content of moisture exceeds 10%, increase in bulk of sand starts increasing

D The volume of fully saturated sand equals that of dry sand

E All the above.