Tip 1 : Do at least 2 projects
Tip 2 : Data Structure is must. Atleast solve 30 to 40 good questions on each data structure.
Tip 1 : Having good projects, some internship experience
Tip 2 : Put what you know.
2 coding questions,7 code debugging questions ,rest were MCQ Core aptitude, reasoning, OOPS. I only remember one coding question.



If any character is a ‘?’ we can replace that character with any other character.
If a character is a * we can replace * with any sequence of characters including the empty sequence.
Let str = “abc?" and pat= “abcd”
We return true as ‘?’ can be replaced with ‘d’ and this makes ‘str’ and ‘pat’ same.
It was evening time at 4 O clock, Alone in a room with pen and paper near me. Interviewer was chilll.He explained the problem very well .When I explained him the approach ,He was proving edge cases to fail my approach .Then I changed my approach Little .it was able to pass all the test cases.

1. The path from NODE1 to NODE2 does not include NODE1 and NODE2.
2. NODE1 and NODE2 are unique.
3. If there is no element in the path from NODE1 to NODE2, return -1.
It was 5 PM and Interviewer was not good this time, He give me a problem with one test case. But when I asked him that can you tell me the result for a new test case which I took as an example .He said NO



Consider the array be 1,6,4,6,2,4,2
The integers 2, 4, 6 occur twice and only the integer 1 occurs once.

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?