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: A's advice to B - "If you want to study Accounts, join Institute Y." Assumptions:
  1. Institute Y provides good Accounts education.
  2. B listens to As advice.

A Both I and II are implicit

B Only assumption I is implicit

C Either I or II is implicit

D Only assumption II is implicit

E Neither I nor II is implicit

Q2: Which of the following statements is correct about the C#.NET program given below?
namespace AptitudeCrackConsoleApplication
{
    class Baseclass
    { 
        int i;
        public Baseclass(int ii)
        {
            i = ii;
            Console.Write('Base '); 
        } 
    } 
    class Derived : Baseclass
    {
        public Derived(int ii) : base(ii)
        {
            Console.Write('Derived ');
        } 
    } 
    class MyProgram
    { 
        static void Main(string[ ] args)
        { 
            Derived d = new Derived(10);
        } 
    } 
}

A The program will output: Derived Base

B The program will work correctly if we replace base(ii) with base.Baseclass(ii).

C The program will report an error in the statement base(ii).

D
The program will work correctly only if we implement zero-argument constructors in Baseclass as well as Derived class.

E The program will output: Base Derived

  

Q3: Effect of a force on a body depends upon its

A all the above.

B direction

C magnitude

D position

Q4: Which of the following term applies to troposcatter propagation?

A SIDs

B Faraday rotation

C Fading

D Atmospheric storms