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: Market trends are changing continuously and with increasing competitiveness, the consumer's demands with respect to the prices and quality are gradually increasing. Assumptions:
  1. The consumers did not care for the prices and quality earlier.
  2. Market competitiveness is not favourable for the consumers.

A Either I or II is implicit

B Both I and II are implicit

C Only assumption II is implicit

D Only assumption I is implicit

E Neither I nor II is implicit

Q2: Which of the following is correct way to convert a String to an int?
  1. String s = '123'; 
    int i;
    i = (int)s;
  2. String s = '123';
    int i;
    i = int.Parse(s);
  3. String s = '123'; 
    int i;
    i = Int32.Parse(s);
  4. String s = '123'; 
    int i;
    i = Convert.ToInt32(s);
  5. String s = '123'; 
    int i;
    i = CInt(s);

A 3, 5

B 2, 3, 4

C 1, 3, 5

D 2, 4

  

Q3: If two forces acting at a point are in equilibrium, they must be equal in magnitude and their line of action must be along

A the perpendicular to both the lines

B the same line in the same sense

C the same line in opposite sense

D none of these.

Q4: A vertical loop antenna, like a horizontal dipole, is vertically polarised.

A True

B False