Tip 1 : Do at least 1 project using market trending technologies(React JS, Node JS, Django). It increase chance of selection better than others.
Tip 2 : Practice questions on arrays and recursion(GFG preferred). Logic based questions will come not too much hard.
Tip 3 : Practice basic aptitude questions(Number arrangement, Puzzle, Number Series) they ask aptitude ques interview
Tip 4 : Work on logic of programming language as they mostly ask logic instead of full code. For python developer my suggestion not practice using built-in-function(eg. sort(), slice() etc) as they focus on logic so they ask logic behind programming not want code using built-in-function.
Tip 1 : Mention that project that you know about very well (all features, technology used etc). Don't add too much project
Tip 2 : Mention the only programming language in which you are comfortable not add 2-3 language.
Tip 3 : Mention the Roles and Responsibilities of internship that you done with technology that you have worked upon
This is first machine test in which 2 coding questions was given to us. I had to code in 1hr. Questions was logic based not much hard based on array and recursion. If you successfully able to complete 1.5 question correctly. You directly reach to Technical interview 1 round. If you completed 1 correctly then you have to given second chance to appear in 2nd Machine coding test.



Input: 'arr' = [2, 2, 2, 2, 0, 0, 1, 0]
Output: Final 'arr' = [0, 0, 0, 1, 2, 2, 2, 2]
Explanation: The array is sorted in increasing order.
Using DNF approach



Step 1 : Traverse linked list from both ends.
Step 2 : Swap nodes at each step
This is 2 machine test in which 2 coding questions was given to us. This is for those student who only solve 1.5 or 2 question in Machine test round 1. You had to code in 1hr. Questions was logic based not much hard based on array and recursion. If you successfully able to complete 1.5 question correctly. You reach to Technical interview 1 round.



Consider 0-based indexing.
Consider the array 1, 2, 3, 4, 5, 6
We can Jump from index 0 to index 1
Then we jump from index 1 to index 2
Then finally make a jump of 3 to reach index N-1
There is also another path where
We can Jump from index 0 to index 1
Then we jump from index 1 to index 3
Then finally make a jump of 2 to reach index N-1
So multiple paths may exist but we need to return the minimum number of jumps in a path to end which here is 3.
This is 1st Technical Interview round held around for 1.5 hrs. Firstly introduction was asked. Then about project you have worked upon and technology used and also internship details if done any.
After this, In this round I have to code the logics of given coding questions they do not ask for full code they only ask for logics without using built-in-functions.
After this they asked two aptitude questions to check thinking and logic capability basically it is puzzle and number series question.
After this they asked about oops concepts with example. Interview is over after this



153 = 1^3 + 5^3 + 3^3.
Therefore 153 is an Armstrong number.
You have a 3 litre jag and a 5 litre water jug. Jug does not have any marking. You have plenty of water or running tap. How would you measure 4 litres of water?
Tip 1 : Except 3 and 5 litre jug you don’t have any container or jug but only 3 and 5 litter jug.
Tip 2 : It is a famous puzzle. So, it was easy to solve


Input: ‘N’ = 4, ‘NUMS’ = [2, 3, 6, 5]
Output: [3, 2, 6, 5]
At ‘i’ = 0, ‘NUMS[ i ]’ = 3
At ‘i’ = 1, ‘NUMS[ i ]’ = 2, it satisfies the condition ‘NUMS[ i ]’ <= ‘NUMS[ i - 1 ]’ if ‘i’ is odd.
At ‘i’ = 2, ‘NUMS[ i ]’ = 6, it satisfies the condition ‘NUMS[ i ]’ >= ‘NUMS[ i - 1 ]’ if ‘i’ is even.
At ‘i’ = 3, ‘NUMS[ i ]’ = 5, it satisfies the condition ‘NUMS[ i ]’ <= ‘NUMS[ i - 1 ]’ if ‘i’ is odd.
This is 2nd Technical Interview round held around for 1.8 hrs. Firstly introduction was asked. Then about project you have worked upon and technology used and also internship details if done any.
After this In this round I have to code the logics of given coding questions they do not ask for full code they only ask for logics without using built-in-functions.
After this they asked two aptitude questions to check thinking and logic capability basically it is puzzle and number series question.
After this they asked about OOPS, DBMS concepts with example.
Tip 1 : Prepare all basic questions of DBMS
Tip 2 : They probably ask SQL queries based on join by giving some situation so well prepare for SQL also
You are in a room with 3 switches which correspond to 3 bulbs in another room and you don't know which switch corresponds to which bulb. You can only enter the room with the bulbs once. You can NOT use any external equipment (power supplies, resistors, etc.). How do you find out which bulb corresponds to which switch
Tip 1 : Listen to the problem very carefully
Tip 2 : Take your time
Tip 3 : First be sure about the answer and then reply to the interviewer
Final Round in which HR asked about introduction then about project and internship and then regular HR Question
Tip 1 : If they asked for technology preference then tell your preference. If they asked to work on any technology say yes because after selection you mostly got your preferred technology and if anyone not get they also chance to work on preferred tech according to project req.
Tip 2 : Always put good points about company (eg. Flexibility, Environment, Learning, Growth etc)

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL clause is used to specify the conditions in a query?