Tip 1 : Practice Atleast 250 Questions on GFG/Leetcode
Tip 2 : For DSA questions in interviews, start explaining from the brute force approach and then move to the optimal one. Convey your thought process to the interviewers, so that they can help you out if you get stuck.
Tip 3 : Do not write anything that you are not confident of in resume
Tip 4 : Do atleast 2 projects
Tip 1: Try to include at least one development project in your resume.
Tip 2: Interviewer will ask anything from your resume so be prepared for it.
Tip 3 : Don't mention some random projects which you are not sure about or copied from Google or somewhere else.
There were 8 Questions
6 coding questions
2 dbms questions



F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.



LCM(1,N) + LCM(2,N) + .. + LCM(N,N)



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.



Let the array = [ 4, 2, 1, 5, 3 ]
Let pivot to be the rightmost number.




1) A prime number is a number that has only two factors: 1 and the number itself.
2) 1 is not a prime number.
ht
Explain Different keys in DBMS
Two Table were given. we need to write a query for inner join.
This was technical round. Interviewer asked me 3 coding problem and one aptitude question and some questions from the projects I mentioned on my resume



Let 'S'= “abAb”.
Here the characters ‘a’ and ‘A’ have frequency 1 and character ‘b’ has frequency ‘2’.
Therefore the sorted string is “bbAa”.
int count = 0;
for(int i = 0; i < str.length(); i++){
if(str[i] == ch) count++;
}
print(count);







1. The array consists of only 3 distinct integers 0, 1, 2.
2. The array is non-empty.
We can use custom comparator for the sorting.
In this round interviewer asked me about my projects and I had to solve 2 coding problems


1. If the list is empty, the function immediately returns None because there is no middle node to find.
2. If the list has only one node, then the only node in the list is trivially the middle node, and the function returns that node.



In the given linked list, there is a cycle, hence we return true.

Why Java is platform independent ?
Difference between Abstract classes and interface

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