Tip 1: Always be clear with the basics
Tip 2: Learn about the company and questions of the past year on topics that the company asks.
Tip 3: Watch as many interview preparations for the company profile you're applying for.
Tip 1: Always have some projects on your resume
Tip 2: Be clear with the things you put on your resume. Interviewers ask for a resume.
It was MCQ + Coding
It was afternoon around 2pm.



Consider if ‘N’ = 4, the Factorial of 4 will be the product of all numbers from 1 to 4, which is 1 * 2 * 3 * 4 = 24. Hence, the answer is 24.
It was a simple question, it was solved by recursion easily if you know recursion.
What are the three levels of data abstraction?(Learn)
What do you understand by query optimization?(Learn)



If the given input string is "Welcome to Coding Ninjas", then you should return "Ninjas Coding to Welcome" as the reversed string has only a single space between two words and there is no leading or trailing space.
1. Run a for loop to traverse the string and create a temporary string to store the words
Interview Round
Write an SQL query to find the names of employees starting with ‘A’.
Using "A%" . SELECT * FROM table_name WHERE NAME LIKE 'A%';
How can you fetch common records from two tables?
using join
Write the SQL query to get the third maximum salary of an employee from a table named employees.
Using sub query
SELECT salary
FROM employees
ORDER BY salary DESC
LIMIT 2, 1
Given the following tables:
sql> SELECT * FROM runners;
+----+--------------+
| id | name |
+----+--------------+
| 1 | John Doe |
| 2 | Jane Doe |
| 3 | Alice Jones |
| 4 | Bobby Louis |
| 5 | Lisa Romero |
+----+--------------+
sql> SELECT * FROM races;
+----+----------------+-----------+
| id | event | winner_id |
+----+----------------+-----------+
| 1 | 100 meter dash | 2 |
| 2 | 500 meter dash | 3 |
| 3 | cross-country | 2 |
| 4 | triathalon | NULL |
+----+----------------+-----------+
What will be the result of the query below:
SELECT * FROM runners WHERE id NOT IN (SELECT winner_id FROM races)
I tried but it was not good enough
Evening around 6 pm.
How were you able to solve your coding question?
Are you okay with relocation?
Do you agree with the bond period of the company?
Explain your weakness and strengths?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What can be the possible extension for the HTML5 file?