image not found

Oops! That page can't be found.


Directions to Solve

Which of phrases given below each sentence should replace the phrase printed in bold type to make the grammatically correct? If the sentence is correct as it is, mark 'E' as the answer.

Q1: Maria unnecessarily picked up a quarrel with Rani and left the party hurried.

A has picked up

B picked on

C picked

D picking up

E No correction required

Q2: The point angle of a drill, for drilling stainless steel, is

A 90°

B 118°

C 135°

D 150°

Q3:
What will be the output of the program?
#include<stdio.h>
int main()
{
    int i=2;
    int j = i + (1, 2, 3, 4, 5);
    printf('%d\n', j);
    return 0;
}

A 4

B 7

C 6

D 5

Q4: Associativity has no role to play unless the precedence of operator is same.

A True

B False

Q5: The expression of the right hand side of || operators doesn't get evaluated if the left hand side determines the outcome.

A True

B False

Q6: In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators

A True

B False

Q7: Associativity of an operator is either Left to Right or Right to Left.

A True

B False

Q8: Are the following two statement same?
1. a <= 20 ? (b = 30): (c = 30);
2. (a <=20) ? b : (c = 30);

A Yes

B No

Q9: Two different operators would always have different Associativity.

A Yes

B No

Q10: Will the expression *p = p be disallowed by the compiler?

A Yes

B No