Convergys Placement Paper

21
Aptitude : 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 2) 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 3) There are 5 questions based on a murder story.the questions concentrate on the seating arrangements of people mentioned. 4) 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 5) 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

Transcript of Convergys Placement Paper

Aptitude :

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 this1)4002)5003)6004)800.Ans) 800

2) 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

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

4) 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

5) 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

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

Ans : 16

7) 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

8) 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

9) Number of digits with a 2 in them between 100 and 400?

Ans : 138

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

Ans : 54 minutes.

11) 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

12) 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

13)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)Mondayb)Tuesdayc)Wednesdayd)thursday

ans: a) Monday. Please cross check the answer

14)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 thisa)7500b)8000c)8500d)Ans: 8000.

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

16)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.

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

Language : C/C++

1) which of the following is the correct declaration of a function pointer

2) how will u retrieve the value stored in pointer variable a

1.a2.&a3.*a

Ans : a

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

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

4) Encapsulation

a)Aggregation of member objectsb)Aggregation of member functionsc)Used to incorporate data hiding

Ans: c)

5) Float_ptr = new float[100]In order to deallocate this memory use

a)delete float_ptrb)delete [] float_ptrc)delete float_ptr [100]d)delete float_ptr []

Ans:b)

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

Outputa) 1144b) 144144c) O/p Errord) Junk

Ans:c)

7) What is Virtual member function?

8) Cin, Cout are

a)Classb)Objectsc)Methodsd)Keywords

Ans: objects

9) cout << ( cout << "Hello" )<< "World"

Ans: HelloWorld

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

Outputa)4 0 0b)0 4 1c)1 4 1d)Error

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

Ans: 4 0 0

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

12)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

1) How will u keep the exisiting values of a array when enlarging it

Ans : Using Redim Preserve

2) for i = 0 to 5a[i] = iprint a[i]next i

how would it get printed in the form?

1.0123452.0123453.123454.123

45

Ans : guess the choice is 2

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

3) Resume used in conjunction witha)On Error b)Error c)Error GOTO

Ans:On Error

4) Creating a new object usinga)New b) New, Create Objectc)New, Create Object, Setd) New, CreateObject, Set Get Object

Ans: a) New

5) DIM x, y, z as Integer

Ans: X, Y variants, Z - Integer

6) Dim Counter;For Counter = True to FalsePrint CounterNextOutput :a)Error msg b) True False c) -1 0 d) True

Ans: c) -1 0

7) Form loadtextbox.text = "Hello"on form load what all events will take placea) Initialise b) Initialise, load c) Initialise, load, activated) Initialise, load, activate, validate

Ans: (c)

8) Connection object, command objection. How can uassociate both?

a)Set command object.activeconnection = connectionobject

9)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?

10) 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?

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

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

13)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

First 10 questions are based on  venn diagrams. Then next puzzle test question he asked

some around 4 on that.

Is PQR a isosceles traingle? He gave two statements we need to choose that whether 1st is

enough or 2nd one enough or both are required to get solution or not by using both satements.

These kind of questions are around 8.

Options:-

a)1st Statement alone will give result.

b)2nd Statement alone will give result.

c)1st n 2nd Statement both will give result.

d)Results can not be obtained

Find the value of b.a n b are non negatiove numbers

1)2a-b is divisible by five

2)a-b=6

PQRS is a Quadrilateral.reactagle is drawn(Not excatly but these kind of ques)

1)PS n QR having positive slope

2)PQ n RS Having positive.

find value of Y?Y is non negative integer.

1)XY+Y^2=0

2)XY+Y^2=5

A tank was filled up to 1/3 after that again it was filled with 3 Litres of water now the tank

is 1/2 filled. What is the capacity of Tank? (Gave 4 Options)

A Person painting on a glass board which is of 3:2 ratio. The smaller side size is of 15

inches. What is total size of board?

One question on permutations

From 1 to 100 how many numbers are diovisible by 4 and should contain 4 in the divisible

number?

1)6         2)7         3)9         4)10

Answer) 4,8,12,16,20,24,28,32, 36,40,44,48,52,56,60,64,68,72, 76,80,84,88,92,96,100 -  these r

the nums divisible by 4 n the number wich contain 4 digit are 4,24,40,44,48,64,84.

A Problem on Cubes. 4*4*4 cubles is there and a smaller cuble of 64 blocks are joined

together.

PAPER : CONVERGYS PAPER ON HYDERABAD

The 5 sections are:1) ENGLISH

2) REASONING

3) UNIX

4) DBMS

5) C++

1) ENGLISH SECTION—20q (20 min)

It has totally 20 spaces were given in the passage we should estimate the appropriate word in the

blank space….4 options for each blank the passage is given below i don’t remember the all

dashes but this is the passage

Most agree that humor in the workplace can have beneficial effects. Yet not all humor is good

humor. The challenge: how to interject appropriate humor and fun into our serious jobs without

hurting others or seriously undermining the company. When used appropriately, humor can work

for you.

Humor that Uploads Also Uplifts

Humor has the power to make people feel special. When you include people in fun it

simultaneously improves morale, reduces stress and facilitates team building. With the

prevalence of telecommuting and workgroups scattered geographically, the challenge of

furthering working relationships, bonding and building camaraderie is real. At one San Francisco

Bay Area company a workgroup staged an elaborate Remote Baby Shower. The expectant

mother, who was out-of-state, called in for a pre-arranged conference call with her workgroup.

When she did...surprise! Everyone was having a party in her honor. They uploaded digital photos

of a decorated conference room and each other, and e-mailed sound files with well wishes.

Everyone shared in the good cheer. This creative use of technology brought employees closer to

each other, figuratively if not literally.

Humor That Brings People Together

Workplaces are full of opportunities to use humor for the benefit of all. Milestones are a natural

place to employ humor. Dress like the recipient as a tribute during a surprise birthday party.

Other celebrations to mark anniversaries, project completions or similar accomplishments are

perfect opportunities to utilize humor. Even surviving certain projects is cause for celebration

and fun.

Holidays are another natural time to employ humor. Halloween is a time for contests to see who

can best decorate conference rooms; for other companies the anniversary of their founding is

cause for celebration. Silly speeches, skits and spoofs abound.

And the Award Goes To...

Staging award ceremonies is a great way to have fun, recognize each other and revel in the

shared work experience. Whether the categories mimic those found at the Oscars, Emmys or

Tonys, or are derivative, esprit de corps rises when the team laughs at itself and each other. Best

Supporting Actor, Best Impersonation of an Inanimate Object, Best Special Effects, Most Likely

to Secede, or Lifetime Achievement Award.

Pranks can alternately be uplifting or uprooting. A desktop publisher, on April Fools Day,

adorned his co-workers cars' windshields with mock yellow parking tickets, complete with

envelopes for remittance. Upon closer inspection, these true-to-life replicas of tickets had

whimsical offenses of significance to the recipients. The departmental joker's ticket cited him for

"excessive use of farce" and the hard charging corporate counsel's infraction charged him with a

"Failure to Yield." Of course the initiator of the gag was later cited for impersonating an officer.

Everyone laughed at the spoof once they realized it was a joke. Judge Judy's signature at the

bottom of the ticket gave it away.

Pole Position

A fast growing company didn't have enough office space for full cubicles for its new hires. One

unfortunate hire's assigned cubicle had a giant pole in its midst. To her credit she never

complained. Co-workers felt for her. One night they hit the streets, collecting various fliers from

telephone poles in their neighborhoods. The next day when the new hire reached her cubicle, the

offending pole was now covered with notices about missing pets, renters seeking apartments,

cheap movers for hire and even local GRE study groups. Not only did the employee know her

co-workers felt her frustration, it bonded them as well as they pulled together to help one of their

own.

One Person's Humor is Another Person's Horror

When targeting humor consider targeting yourself. Everyone has a different idea of what's funny

and what's not. Many a well intentioned prank or joke has backfired. One co-worker sent another

a prank letter impersonating a local media figure. The recipient mistook it for real, interpreted it

as harassment and called the FBI. Oops!

The Benefits of Self-Effacing Humor

When we make fun of ourselves it actually demonstrates our healthy outlook, showing we don't

take ourselves so seriously. As a result, we're regarded as more approachable and down to earth.

Don't make fun of yourself excessively. Such humor loses its effectiveness with overuse.

Everyone from politicians to CEOs to Southwest Airlines flight attendants use self-deprecating

humor - humor that makes fun of themselves - to get people laughing at, and consequently with

them. You can too.

While gallows humor may feel appropriate during layoffs and cutbacks, strive to employ humor

that uplifts and taps universal themes for best results. Here's to laughter!

2) REASONING PART—45q (48 min)

It has totally 45 questions we should answer them in 48 min Out of 48 questions

10 questions from data sufficiency

10 questions from Venn diagrams

5 questions from *, & questions

5 questions from painted cube problems

5 questions from seating arrange ment problems

4 questions from Blood relations

Remaining 6 questions are different and simple problems like directions

3) UNIX—10q (10 min)

The questions are easy we can answer them if we have basic knowledge in UNIX

Some questions what I remembered are

1) --------- acts as a command interpreter

A) Unix shell b) kernel c) d) ans) a

2) Combine $x=1;[x -ge 10] into a single statement

3) Wats the output of the code snippet

echo hello

Eval echo Hello

Eval echo eval Hello

Ans: hello

Hello

Hello

4) What does $* represent

4) DBMS--- 10q (10 min)

All questions are very easy the questions are

1) Which statement is true to dbms?

a) Collection of data

b) Collection of interrelated data and set of programs to access that data

c) Collection of inter related data no need of any programs

d) Collection of data and set of programs

Ans) b

2) Values should dependant on primary key in which normal form?

a) 1 NF b) 2nf c) 3nf d) 4nf

3) Mathematical representation of joining tables ----------

a) Union b) c) Cartesian product d)

4) A Question on view

5) Question on data objects and constraints

6) Use of normalization?

a) Reducing redundancy b) little storage space c) d) all the above

ANS)d

7) What r the types of joins below

A) Interior & outer b) inner and outer joins c) d)

Ans) b

5) C++ ---15 q(15 min)

The code that could be written in which block to raise exceptions?

A) Catch b) try c) finally d) none

Ans) b

2) Some programs on pointers some tricky questions

3) By using which keyword we can’t change value after initialization?

a) Int b) c) d) const

4) Class one

{

enum {name1,name 2, name 3}

}

Wt is the value of name 2

a) 0 b) 2 c) 1 d) 3

(this question is not full, like this only) ans) c

5) Which of the following is true for constructor?

a) b) c) d) constructor can not be inherited

8) 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

9) Number of digits with a 2 in them between 100 and 400?

Ans : 138

6) Ram gets 148 marks for 20 questions. +10 for correct. -3 for wrong. How many correct

answers?

Ans : 16

7) 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

12) 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

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

Ans) 800

2) 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

3) There are 5 questions based on a murder story.the questions concentrate on the seating

arrangements of people mentioned.

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

Ans : 54 minutes.

11) 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

4) 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

13)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

14)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) 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

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

16) 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.

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