Tip 1 : Not so tough interview, just prepare data structures thoroughly.
Tip 2 : You should have good knowledge of your previous project.
Tip 1 : Oracle projects are mostly based on java , so Java , Data structures should be added in resume.
Tip 2 : Please add at least 3-4 projects in your resume. They are very much concerned about the projects.
Tip 3 : Please don’t lie in your resume as they’re going to ask you questions on every thing you’ve mentioned.
The round was taken on weekend and hiring manager will be available on call with you during the entire round of online test. So, don’t consider it as a online test only.
The question for checking all the OOP concepts, so you were given a scenario and you have to make abstract classes, objects, their implementation classes and generate the required output. They were mainly concerned on checking your OOP concepts.



1. There will be no leading zeros in any string in the list ‘BINARYNUMS’.
Consider N = 5 and the list ‘binaryNums’= [“0”, “01”, “010”, “100”, “101”]. This list consists of the binary representation of numbers [0, 1, 2, 4, 5]. Clearly, the missing number is 3 and its binary representation will be “11”. So you should return string “11”.
Egg drop puzzle
Two coding questions were asked, they will compile the questions in the interview.



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.




‘MEETINGS[]’ = {30, 15, 60}
Let us assume the meeting starts at 12:00 o’clock.
The first meeting takes 30 minutes so after the first meeting time is 12:30.
Then Ninja cannot attend the second meeting which is for 15 minutes because he needs 15 minutes break after every meeting.
After a 15 minutes break, he can attend the next meeting which is for 60 minutes.
So the total booked minutes for the meetings is 30 + 60 = 90.
Interview was medium level and the interviewer was more concerned about the projects
Draw the full design of the project i was working in previous company.



Consider 0 based indexing.
1. Asked me every question related to my resume like unix, my projects, java, oops, behavioural questions
2. I told him that i was weak in hashmaps in my college. So, he gave a very easy problem to solve. You should paas all edge cases .
3. At last, director asked me behavioural questions and about relocation and all

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?