Tip 1 : Stay focused
Tip 2 : Practice coding questions
Tip 3 : View previous interviews of the company applying to
Tip 1 : Have atleast 3 great project
Tip 2 : Write only what you know and prepare well
The written test consisted of 4 parts. Each part had a few more sub-parts which are to be answered in 120 mins.
Grammatical, spoken English, and passage analysis.
Analytical, Mathematical reasoning.
Programming skills. (Data structures, C++, Java)
Technical knowledge. (Operating Systems, DBMS)
The interviewer first introduced himself and then asked me for an introduction. He asked some normal questions like how I am feeling, how was my day, how was written test was. He made me comfortable then asked 2 coding questions.



Initially, I have told him a brute-force approach of O(n). He asked for optimization. Then I have given a binary search approach. He agreed to that and asked me to write code for that. I had written the code in 5 mins then he asked me to dry run on some test cases.



1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
I have proposed two approaches one was sorting + two pointer-based and other one was map-based. He asked me to explain both the approaches and at the end he asked me to code sorting based approach. I had written the code in 10 mins and then dry run the code for the given test case.
There was only one member in the panel.
He first introduced himself. He was a senior manager and was working in oracle for around 10 years.
Then he asked me to introduce myself. He already had my resume with him.
He asked some questions based on my resume.
Then he asked me to explain one of my projects. I had explained to him that project.
He asked me which one is a team project. I told him about one of my projects which was a team project. He then asked me to explain that project and then some general questions like conflicts in the team, problems faced during projects.
After that, he explained a bit about Oracle and its current work.
Then he asked me if I had any questions.

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