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 33505Post New Genpact Interview Questions
CSS corp interview process and placement papers
In swift, what type of object are basic data types?
What is a constructor in class?
What is Contextual classes of table in Bootstrap?
What is the use of functions in WMLScript?
Can free-form SQL queries be used with Sqoop import command? If yes, then how can they be used?
In howmany ways can you deploy an assembly?
When it functions as a "second messenger", cAMP a) acts outside the cell to influence cellular processes. b) acts "second in importance" to AMP. c) activates all cytosolic protein kinases. d) activates the cAMP-dependent protein kinase.
Name some projects in which government has to make public expenditure?
Public serversocket(int port, int queuelength) throws ioexception, bindexception?
what are the w3c specifications for xml?
What are data labels in excel?
How do we balance an AVL Tree in C++?
Up to what time we can show TDS Receivables under Advance Income Tax A/c?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }