image not found

Oops! That page can't be found.


Q1: (12345679 x 72) = ?

A 88888888

B 898989898

C 888888888

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 II is implicit

B Either I or II is implicit

C Both I and II are implicit

D Neither I nor 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 3456

B 1236

C 4566

D 5686

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 2

C 12

D 7

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

B It converts a number to its equivalent binary.

C It converts a number to a given base.

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 3, 4

B 3, 5

C 1, 2, 3

D 2, 4, 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 All the above.

D The gravitational intensity declines with height

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

  

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 None of the above

B Receive TV signals

C Display graphics

D Give a clear picture

E Give a steady picture