Tip 1 : Solve RS Aggarwal Aptitude and Problem Solving Books.
Tip 2 : Practice Coding questions from prepInsta.
Tip 3 : Worked on communication skills
Tip 1 : Mark skills with Bold letters.
Tip 2 : Mention projects on resume



1. Left - (i, j-1)
2. Right - (i, j+1)
3. Up - (i-1, j)
4. Down - (i+1, j)



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
Step 1: Create a temporary byte[] of length equal to the length of the input string.
Step 2: Store the bytes (which we get by using the getBytes() method) in reverse order into the temporary byte[].
Step 3: Create a new String object using byte[] to store result.



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.



If the code name does not match any interval then print -1 for that code name.
Describe a time when you experienced conflict with a coworker. How did you handle it?
How does this job compare to others you might be interviewing for?
What interests you about this role?
What critical feedback do you most often receive?
Tip 1 : Practice well
Tip 2 : Speak in front of mirror

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