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 questions on DSA



We have an array ARR = {1, 2, 3, 4, 5, 6} and M = 3 , considering 0
based indexing so the subarray {5, 6} will be reversed and our
output array will be {1, 2, 3, 4, 6, 5}.
Here we will use another array for reversing the elements.
The basic idea is just to store the elements up to the Mth position in the newly created array in the same way as they are given in the original array. Now after the Mth position store the elements in the reverse order.



Input: ‘N’= 25, ‘s’ =”Take u forward is Awesome”
Output: 10 11 4
The idea is to iterate through the given string, if we encounter a vowel we increment the count of vowels, else if we encounter a space we increment the count of spaces else we increment the count of consonants.
The vowels are {a, e, i, o, u, A, E, I, O, U}.
So to make the implementation easier we will convert our whole string into lowercase and then we just have to check if the current character is one of {a, e, i, o, u} or not.
Technical round with questions on OOPS.
What is a pointer
What is a null pointer
What are structures
What is nested structure
What are classes?
HR round with behavioural questions.
Where do you see yourself in 5 years
According to you what do you need ...technical skills or team collaboration
Can you work in night shift and can you relocate?

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