Tip 1 : Do two projects on ongoing technologies.
Tip 2 : Practice previous interview question and answers.
Tip 3 : Be punctual at your interview.
Tip 4 : Do research on the company and the role you are applying for.
Tip 5 : Study your resume and know everything about it.
Tip 1 : Tailor your resume to suit the position you are applying for.
Tip 2 : Keep your resume clear and concise.
Tip 3 : Limit your resume to 2 pages.
Tip 4 : Quantify your achievements.
This is an aptitude based round so no coding questions are there.
This is an psuedo code round in this we receive basic programming pseudo code MCQ questions.



In order to solve this problem recursively, we need a base case and a process which reduce the problem space after each recursive step. We can solve this problem using indexOf() and substring() method of Java's String class, indexOf() method returns index of a given character if its present in the String on which this method is called, otherwise -1.
Step-1: we will try to find the index of given character, if its present then we will remove it using substring() method, if not present then it become our base case and problem is solved.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?