Tip 1 : Have faith in yourself
Tip 2 : Whatever you write in your resume, know it in and out.
Tip 3 : Do not feel afraid to ask your recruiter about the feedback and type of interview rounds scheduled.
Tip 1 : Make sure your project stands out amongst the crowd
Tip 2 : Mention your achievements and along with work in previous job experience.


You are given, ‘str’ = ‘AbcdEfgh’, in this string if you convert all the characters into lowercase, the string will be ‘abcdefgg’. Hence it is the answer.



You are given ‘ARR’ = [5, 2, 3]
In the first step, you can change 5 to 3, so the new array is [3, 2,3].
In the second step, you can change the 3 to 2, then the array is [2, 2,3].
In the third step, you can change the 3 to 2, then the array is [2, 2, 2]
Hence the answer is 3.
Design a system such that google developer gets access to user's data for fixing the bug in the app.



‘STR’ = “i am a Ninja”, ‘N’ = 3 and ‘WORDS[]’ = [“Ninja”,”a”,”am”]. Then the output should be [1,1,1]. Because the occurrence of “Ninja” in ‘STR’ is 1 and the occurrence of “a” in ‘STR’ is 1.Similarly occurrence of “am” is 1.
The output should be in the same order as given in ‘WORDS’.

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?