image not found

Oops! That page can't be found.


Directions to Solve

In each question below is given a statement followed by two assumptions numbered I and II. You have to consider the statement and the following assumptions and decide which of the assumptions is implicit in the statement.

Give answer

  • (A) If only assumption I is implicit
  • (B) If only assumption II is implicit
  • (C) If either I or II is implicit
  • (D) If neither I nor II is implicit
  • (E) If both I and II are implicit.

Q1: Statement: "Use our product to improve memory of our child. It is based on natural herbs and has no harmful side effects." - An advertisement of a pharmaceutical company. Assumptions:
  1. People generally opt for a medical product which is useful and has no harmful side effects.
  2. Improving memory of child is considered as important by many parents.

A Both I and II are implicit

B Neither I nor II is implicit

C Either I or II is implicit

D Only assumption I is implicit

E Only assumption II is implicit

Q2:
What will be the output of the C#.NET code snippet given below?
byte b1 = 0xAB;
byte b2 = 0x99;
byte temp;
temp = (byte)~b2;
Console.Write(temp + ' ');
temp = (byte)(b1 << b2);
Console.Write (temp + ' ');
temp = (byte) (b2 >> 2);
Console.WriteLine(temp);

A 108 0 32

B 102 1 38

C 102 0 38

D 1 0 1

  

Q3: Parallelogram Law of Forces states, "if two forces acting simultaneously on a particle be represented in magnitude and direction by two adjacent sides of a parallelogram, their resultant may be represented in magnitude and direction by

A half the sum of the diagonals".

B the diagonal of the parallelogram which passes through the point of intersection of the forces"

C its shorter side"

D the diagonal of the parallelogram which does not pass through the point of intersection of the forces"

E its longer side"