I have done B.Sc.(H)Zoology).I went for an interview in a call centre.Cleared seven rounds there.Only I was selected out of 50 people for HR round.In HR round the HR manager asked me "Why you want to join a call centre after doing B.Sc.?" I couldn't answer and lost the interview.
11 33051Post New Genpact Interview Questions
What is the full meaning of dos?
Explain how you can set up the database in django.
What are the privacy implications of using large datasets for Generative AI?
What is database optimization?
How can you write a multiple line comment swift?
What is the meaning of classformaterrors used with the applet?
what are the w3c specifications for xml?
What is the use of truncate command?
Do I still need mcafee with windows 10?
Is visual studio a microsoft product?
What sorting algorithm does c++ use?
What is vom?
What is the basic principle of elisa?
How can threads be created in a solaris environment? Write an example
What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }