Tip 1 : Practice aptitude questions so you can clear the first round
Tip 2 : Do nontechnical work as well
Tip 3 : Stay strong in SQL
Tip 1: SQL is must
Tip 2: all-round experience should reflect
It was an aptitude round of 60 minutes in the morning time.
It was on mettl platform and was proctored.
An aeroplane covers a certain distance at a speed of 240 kmph in 5 hours. To cover the same distance in 1 hours, it must travel at a speed of:
a) 300 kmph
b) 360 kmph
c) 600 kmph
d) 720 kmph
Ans: 720 kmph
What percentage of numbers from 1 to 70 have 1 or 9 in the unit's digit?
1) 1
2) 14
3) 20
4) 21
Ans: 20
A man buys Rs. 20 shares paying 9% dividend. The man wants to have an interest of 12% on his money. The market value of each share is:
1) Rs. 12
2) Rs. 15
3) Rs. 18
4) Rs. 21
Ans: 15 Rs
SQL basic questions on joins and DBMS where tables were given with their primary and secondary keys. We had to join the table and extract the required column.
You are given 2-3 tables which you have to join and calculate values using aggregate functions. 2 tables were there having employee and their sales details. Find the month in which each employee had the highest sales
Joined both tables on employee id, applied sum of sales and grouped it on employee id and name. Pulled the sum of sales and employee id and name in select.
Bank management system was given and some cases were given and using that information we had to write the query and show the output which is required.
Tables and data were given.
Do practice sql query questions for the case study.
Which SQL keyword is used to sort the result-set?
A. SORT BY
B. ORDER BY
C. ARRANGE BY
D. ALIGN BY
Order by
What will the SQL query SELECT * FROM Users WHERE FirstName = ‘John’ AND LastName = ‘Doe’; return?
A. All users with the first name 'John'.
B. All users with the last name 'Doe'.
C. All users with the first name 'John' or the last name 'Doe'.
D. All users with the first name 'John' and the last name 'Doe'.
Ans: D
Here they judge you in your communication skills and problem solving attitude by giving puzzles and guestimates. They also screen your resume and ask questions from that and on the projects done in college.
Guesstimate on How many white cars in Delhi currently on roads
Can we apply loops in MySQL. How can we do this for database.(Learn)
I explained loops are not available in MySQL but present in SQL Server which we can use. Alternatively if we need lesser number of loops, we can use union in MySQL
Explain your role in the project that you’ve done in your final year
Tip 1: be thorough on your role and responsibilities and the learning you had
What makes you a good fit to be here.
Tip 1: Explain how can your skill set benefit them
Tip 2: Even if you don’t have the exact skills show your learning mindset
Tip 3: How you will also benefit from working here

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?