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.
Technical round with 2 DSA questions.



We will optimize the test to check if a given number is prime. Instead of looping to N-1, we check divisibility till (N)^½. This is because if the number is not prime, there must be at least one divisor till N^½.



You must write an algorithm whose time complexity is O(LogN)
while(low <= high) do until the pointers low and high meet each other.
mid = low + (high - low)/2
if (key == arr[mid])
return mid
/* key is on the right side */
else if (key > arr[mid])
low = mid + 1
/* key is on the left side */
else
high = mid - 1
Technical round with questions on core subjects.
What is SQL?
Why we use databases?
What is RDBMS ?
Write query to retrieve all names start with 'S'
HR round with behavioural questions,
Introduce yourself
What are your achievements?

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