image not found

Oops! That page can't be found.


Q1: (12345679 x 72) = ?

A 888888888

B 88888888

C 898989898

D 9999999998

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 Only assumption I is implicit

B Both I and II are implicit

C Either I or II is implicit

D Only assumption II is implicit

E Neither I nor II 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 4566

B 5686

C 1236

D 3456

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 7

B 2

C 12

D 6

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 octal.

D It converts a number to its equivalent hexadecimal.

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 1, 2, 3

B 3, 4

C 2, 4, 5

D 3, 5

  

Q7: Pick up the correct statement from the following :

A The gravitational force relents as the satellite climbs higher

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

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

D The gravitational intensity declines with height

E All the above.

  

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
ωμ/σ ∠0°

B
ωμ /σ ∠45°

C
ωμ/σp/2

D
σωμp/2