Search This Blog

Friday 6 January 2012

Convergys Placement Paper April 2011

Convergys Placement Paper April 2011:-

1. One day the Finance minister decides that the country should have only 33 paise and 56 paise.If there are two traders having enough change in the two denominations, what is the minimum amount for which they can transact?

Choices :1,2,3,6

Ans: 3

2.Out of the following numbers which is the greatest number when 7 times that number is < 100

1) 12 2) 13 3) 15 4) 14

Ans : 14

3.There is 31 days in the month of January. If there is 4 Sundays and 4 Thursdays exactly.what day is the first day of the month?

a)Monday
b)Tuesday
c)Wednesday
d)thursday

ans: a) Monday. Please cross check the answer

4.there are 5 tyres including a spare tyre.total number of Kms to be covered is 10000 and each tyre should run equally.how may Kms does each tyre run?

I don't remember the order of the choices but the figures were like this
a)7500
b)8000
c)8500
d)
Ans: 8000.

5.a question with the same logic as question 6.I don't remember the question

6.8 persons A,B,C,D,E,F,G,H are sitting in a round dining table.some arrangement was given and position of H was asked.I don't remember the question exactly.

1) All the children were arranged in rows. all the rows containing equal no. of students. if 4 students were removed from each row 10 more rows had to be added. if 5 students were added in each row no. of rows were reduced by 8.find the no. of children. the choices were like this
1)400
2)500
3)600
4)800.
Ans) 800

7.2/3 of people read newspaper A , 3/4 read newspaper B.if 38 read both and 8 didn't read any of the 2.how many read A?

ans) 48

8.There are 5 questions based on a murder story.the questions concentrate on the seating arrangements of people mentioned.

9.A plane goes from Chicago to Columbus and then comes back. It takes the same time to travel in either ways. It leave Chicago early in the morning 0644 LOCAL TIME and reaches the destination Columbus at 0849 LOCAL TIME. In the same evening it leave Columbus at 1625 hrs LOCAL TIME and reaches the destination at 1638 LOCAL TIME. Find the time that the plane takes to travel either way?

Ans: 69 mins

10.There is a 14 digit credit card number in which every 3 consecutive digits add to 20. Here is a part of it.. Find the value of 'x'?

_ _ _ 9 _ _ _ x _ _ _ 7 _ _

Ans : 4

11.Ram gets 148 marks for 20 questions. +10 for correct. -3 for wrong. How many correct answers?

Ans : 16

12.Ganesh and Shankar travel abroad and take more luggage than the airlines allow. They have to pay extra money for it. They carry 52 kgs together and pay $60 and $100 respectively. Now, if the same luggage was carried by only Ganesh it would cost him $340. If the airlines charges only at one rate for extra luggage what is the maximum luggage that a person can carry without paying extra?

Ans : 18 kgs

13.There are 6 consecutive numbers P, Q, R, S, T, U, not necessarily in that order. Given that, Q is 2 less that P, P is 3 less that T and R is 2 less than S, arrange them in an ascending order.

Ans: QRPSUT

14.Number of digits with a 2 in them between 100 and 400?

Ans :
 138

15.Bactria double every 3 mins. It is N in 1 hour, when was it N/4?

Ans : 54 minutes.

Ans)I guess it is between A and F.refer RS Agarwal seating puzzles.It's very easy

16.which of the following is the correct declaration of a function pointer

17.how will u retrieve the value stored in pointer variable a

1.a
2.&a
3.*a

Ans : a

18.How to pass two arguments to a function prompted to by function pointer
a) g -> (1,2) b)*g(1,2) c)(*g)(1,2) d)g(1,2)

Ans: c) (*g)(1,2)


19.Encapsulation

a)Aggregation of member objects
b)Aggregation of member functions
c)Used to incorporate data hiding

Ans: c)

20.Float_ptr = new float[100]
In order to deallocate this memory use

a)delete float_ptr
b)delete [] float_ptr
c)delete float_ptr [100]
d)delete float_ptr []

Ans:b)

21. i = 12
int *p = &I;
print ("%d %d", p/p,*p**p)

Output
a) 1144
b) 144144
c) O/p Error
d) Junk

Ans:c)

22.What is Virtual member function?

23.Cin, Cout are

a)Class
b)Objects
c)Methods
d)Keywords

Ans: objects

24.cout << ( cout << "Hello" )<< "World"

Ans: HelloWorld

25. i=0;
a = 1;
b = 4;
swap(int a, int b)
{
int temp;
temp = a;
a = b;
b = a;
i = 1;
}

Output
a)4 0 0
b)0 4 1
c)1 4 1
d)Error

The questions is similar to this but am sure of the answer it is

Ans: 4 0 0

26.difference between member function and a constructor?
Ans: constructor cannot return value.

27.class B is the subclass of class A.which of the following describes the relationship?
a)…..is a……
b)….has a…..
c)…..implemented as……
d)
ans : I guess …..is a…. (Im not sure)

Language : VB

28.How will u keep the exisiting values of a array when enlarging it

Ans : Using Redim Preserve

29.for i = 0 to 5
a[i] = i
print a[i]
next i

how would it get printed in the form?

30.012345
2.0
1
2
3
4
5
3.12345
4.1
2
3
4
5

Ans : guess the choice is 2

Note : the question is some what similar to this, have a look at how print stmt's result
would be

31.Resume used in conjunction with
a)On Error b)Error c)Error GOTO

Ans:On Error

32.Creating a new object using
a)New b) New, Create Object
c)New, Create Object, Set
d) New, CreateObject, Set Get Object

Ans: a) New

33.DIM x, y, z as Integer

Ans: X, Y variants, Z - Integer

34.Dim Counter;
For Counter = True to False
Print Counter
Next
Output :
a)Error msg b) True False c) -1 0 d) True

Ans: c) -1 0

35.Form load
textbox.text = "Hello"
on form load what all events will take place
a) Initialise b) Initialise, load c) Initialise, load, activate
d) Initialise, load, activate, validate

Ans: (c)

36.Connection object, command objection. How can u associate both?

a)Set command object.activeconnection = connectionobject

37.some code segment was given (I don't remember that) but the question was about this statement.
Print A A (A is a variable)
How VB will react?

38.var1 is declared as global variable.proc1( ) and proc( ) have local variables.when a call is made from proc1( ) to proc ( ) which are the variables will be displayed in locals window?

39.how do u unregister a COM from registry?
Ans) I think the third option .the answer will start with regsvr32 /u …..

40.what will happen when Require Variable Declaration option is checked?
a) existing undeclared variables are converted to variant by VB
b) this comes into effect for the new code segment

41.
A global module called global. as is creates. which part of the program can access this module? The options were ambigous.be clear about the scope of the global. as module and the application which access it

No comments:

Post a Comment