Tip 1 : Lay more focus on SQL/DBMS
Tip 2 : The interview would be either mostly on Programming or on DBMS(writing queries)
Tip 3 : Computer Networks is not asked too much but you should have somewhat knowledge of this
Tip 1 : Do not mention too many interests
Tip 2 : Be strong for whatever you write
It has some mcq questions and coding questions
Timing: Morning
The environment was good without any faults



Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams.
'triangle' and 'integral'
'listen' and 'silent'
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct.



The sequence of natural numbers are integers that start from 1.
Initialize two variables, say res = 0 and p = 1, to store the number in base 9 and to store the position of a digit.
Iterate while N is greater than 0 and perform the following operations:
Update res as res = res + p*(N%9).
Divide N by 9 and multiply p by 10.
After completing the above steps, print the value of res.
Timing : Afternoon
Environment was good.
Interviewer was friendly in Nature
Write an SQL query to fetch the EmpId and FullName of all the employees working under Manager with id – ‘986’.
SELECT EmpId, FullName
FROM EmployeeDetails
WHERE ManagerId = 986;
Write an SQL query to fetch the employees whose name begins with any two characters, followed by a text “hn” and ending with any sequence of characters.
SELECT FullName
FROM EmployeeDetails
WHERE FullName LIKE ‘__hn%’;
Write an SQL query to fetch the EmpIds that are present in both the tables – ‘EmployeeDetails’ and ‘EmployeeSalary.
SELECT EmpId FROM
EmployeeDetails
where EmpId IN
(SELECT EmpId FROM EmployeeSalary);

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