Tip 1 : Thoroughly prepare for algorithms.
Tip 2 : In SQL, solve some questions like extracting top 3 records(there is more than one way to do this and you should know all of them)
Tip 3 : Do projects so that you have talking points in your interview and practice by explaining them to your friends or seniors and ask them to cross-question you on that.
Tip 1 : Have good projects on your resume and explain them very well.
Tip 2 : Whatever is in your resume, you should know about those things well.
There were 2 shifts back to back having the same set of questions. The test consisted of questions from a quant, DI/LR, and verbal, and 3 questions of coding varying from easy to medium to hard. There were three to four people from the company in the room monitoring the lab.
Aptitude section (around 15 questions) -- topics from basic mathematics like time, speed & distance, algebra, arithmetic, probability, geometry, permutation & combination
Verbal section (around 15 questions) -- based on grammar usage and fill in the blanks.
Objective questions (around 15 questions) -- Based on C++, Java, Networking, DBMS etc.
Number Of MCQs - 20
#include Class Temp
{
private:
int m_ival;
public:
Temp()
{
Cout<<"OBJECT CREATED\n"< }
~Temp()
{
Cout<<"OBJECT DESTROYED\n"< }
};
void fnRead()
{
Temp oTempObj;
}
int main()
{
fnRead();
cout<<"IN MAIN \n"< return 0;
}
Tip 1 : Be thorough with your concepts
The GD was on the topic "Is cinema a bad influence on today's youth?". There was quite a healthy discussion and everyone got a chance to speak. At last, we all were asked to summarize the discussion.
The round revolved around my resume and aa I was very much interested in SQL, they asked me about it and questioned about my project.
Basic SQL Queries like Write a query to retrieve the first four characters of EmpLname from the given EmployeeInfo table etc.
SELECT SUBSTRING(EmpLname,1,4) FROM employees;
In this round, the interviewer talked about how our life has been in hostels, the challenges we have faced, and stuff like that.
The interviewer called three interviewees together and gave us puzzles like there are 3 jugs with a capacity of 2,5,3 Litres. How will you measure 4 Litres of water from these jugs? Another was there are three people with three different hats standing in a line such that the person can see the hat of the next person standing in front of him.(Learn)
What are your strengths and weaknesses?
How do you work on your weaknesses?
Tell me about the transformation you had gone through your college life.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?