image not found

Oops! That page can't be found.


Q1: (12345679 x 72) = ?

A 9999999998

B 88888888

C 888888888

D 898989898

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.

Q2: Statement: The government has decided to hold the employers responsible for deducting tax at source for all its employees. Assumptions:
  1. The employers may still not arrange to deduct tax at source for its employees.
  2. The employees may not allow the employers to deduct tax at source.

A Both I and II are implicit

B Only assumption II is implicit

C Neither I nor II is implicit

D Either I or II is implicit

E Only assumption I is implicit

Directions to Solve

In this type of questions, one term in the number series is wrong. Find out the wrong term.

Q3: 1236, 2346, 3456, 4566, 5686

A 5686

B 4566

C 3456

D 1236

Q4: What will be the output of the program ?
#include<stdio.h>
#include<string.h>

int main()
{
    printf("%d\n", strlen("123456"));
    return 0;
}

A 6

B 7

C 12

D 2

Q5:
Which of the following statements are correct about the program?
#include<stdio.h>
char *fun(unsigned int num, int base);

int main()
{
    char *s;
    s=fun(128, 2);
    s=fun(128, 16);
    printf('%s\n',s);
    return 0;
}
char *fun(unsigned int num, int base)
{
    static char buff[33];
    char *ptr = &buff[sizeof(buff)-1];
    *ptr = '\0';
    do
    {
        *--ptr = '0123456789abcdef'[num %base];
        num /=base;
    }while(num!=0);
    return ptr;
}

A It converts a number to a given base.

B It converts a number to its equivalent binary.

C It converts a number to its equivalent hexadecimal.

D It converts a number to its equivalent octal.

Q6:
Which of the following can be facilitated by the Inheritance mechanism?
  1. Use the existing functionality of base class.
  2. Overrride the existing functionality of base class.
  3. Implement new functionality in the derived class.
  4. Implement polymorphic behaviour.
  5. Implement containership.

A 2, 4, 5

B 1, 2, 3

C 3, 4

D 3, 5

  

Q7: Pick up the correct statement from the following :

A The gravitational force relents as the satellite climbs higher

B Nature plays an important role in the launch of a satellite

C All the above.

D The gravitational intensity declines with height

E The earth's gravity reduces the speed of a satellite by 32 km per second

  

Q8: The c.g. of a thin hollow cone of height h, above its base lies on the axis, at a height of

A

B

C

D

Q9: For a good conducting medium the intrinsic impedance is

A
σωμp/2

B
ωμ /σ ∠45°

C
ωμ/σp/2

D
ωμ/σ ∠0°

Q10: A monitor looks like a TV set but it does not

A Receive TV signals

B Give a steady picture

C Give a clear picture

D None of the above

E Display graphics