Tip 1 : Be familier with your project on which you are working currently.
Tip 2 : Focus on your basics concept of oops and datastructure.
Tip 3 : try to brush up my sql and OS a well.
Tip 1 : Your work experience is the heart and soul of your resume. This section needs to be in top shape.
Tip 2 : keep your resume on or two page.
It was an assessment of basics oops and problem solving question.



Input array [5,5,6,4,6],If we look at the frequency of different elements in this array.We can see,4 appears an odd number of times, so our answer will be 4.
The straightforward solution is to use two loops. The outer loop will pick a number, and the inner loop will count the frequency of the occurrence of that number. If the frequency of the occurrence is even, then we discard that number. If the frequency of the occurrence is odd, then we return that number.
More of a managerial round,about current project and tech breath.
Create an Api which shows commit message in the url.
Tip 1:I am a spring resource so i added some annotations, like requestparam.
Tip 2: Be aware of your current project architecture.
Tip 3: Try to collect nformation about your current project and brushup the logic which you have used



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.
Tokenize each word using String.split() method.
Loop through string array and use StringBuilder.reverse() method to reverse each word.
Join all revered words to get back string.

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?