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. I 2. help 3. not 4. you 5. did 

A 24351

B 15324

C 45231

D 43152

E 52431

Q2: What will be the output of the program if the array begins 1200 in memory?
#include<stdio.h>

int main()
{
    int arr[]={2, 3, 4, 1, 6};
    printf('%u, %u, %u\n', arr, &arr[0], &arr);
    return 0;
}

A 1200, 1202, 1204

B 1200, 1200, 1200

C 1200, 1204, 1208

D 1200, 1202, 1200

  

Q3: An ideal vertical curve to join two gradients, is

A
circular

B
parabolic

C
elliptical

D
hyperbolic

E
none of these.