Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
Process was smooth and easy. Interviewers were quire friendly.



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
Initialize 3 pointers low = 0, mid = 0 and high = N-1.
Start traversing the array from start to end, repeat this process until mid <= high.
If the A[mid]==0, then swap(A[low], A[mid]) and update the pointers low = low + 1 and mid = mid + 1.
If the A[mid]==1, just update the pointer mid = mid + 1.
If the A[mid]==2, then swap(A[mid], A[high]) and update the pointer high = high - 1
Print the sorted array
What is encapsulation?
What is abstraction?
Interview started with my introduction, my education and background. Then they asked me about my project and the technology used, then they asked me my favorite subject.
Write SQL query related to my project.
Construct a class that calculates area for rectangle, square and triangle.
Basic HR questions were asked.
Your strengths and weakness?
Where do you see yourself after 5 years?

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