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 questioning on DSA and OOPS.
What is a pointer
What is a null pointer
What are structures
What is nested structure
What are classes
What are classes in C++



If the given input string is "Welcome to Coding Ninjas", then you should return "Ninjas Coding to Welcome" as the reversed string has only a single space between two words and there is no leading or trailing space.
We first split the input string on the basis of spaces and store it in another array of words.
We then initialize two pointers i and j with initial values 0 and length of words - 1.
Now we proceed like palindrome reversal.
We iterate while i < j
swap words[i] and words[j].
increment i and decrement j.
Finally, we concatenate this array of words using spaces again and return the output.
HR round with behavioral questions.
Tell me about yourself first?
How do you feel about working remotely?

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