Has two interview. Technical and then managerial. It was okay and the interviewers are veru kind. Has two interview. Technical and then managerial. It was okay and the interviewers are veru kind. Has two interview. Technical and then managerial. It was okay and the interviewers are veru kind.
Interview questions [1]
Question 1
Skills and thesis. They really want to know how much you know. The processes you've done during thesis days like documenting. Has two interview. Technical and then managerial. It was okay and the interviewers are veru kind. Has two interview. Technical and then managerial. It was okay and the interviewers are veru kind.
I applied online. The process took 4 weeks. I interviewed at Oracle (Hyderâbâd) in Sep 2015
Interview
Three technical rounds and one HR
Most Questions are from DB only. But they have also asked questions from JAVA,C,OS,Web Technology(Some Very Basic questions).In DBMS they started like “I am organising a Sports days event. Some events are solo events and some events are Group events.” So I have to design a table to manage the info reg the participants and also they gave some scenarios .
One cannot participate more than 3 events maximum of 1 group event and 2 solo event.
For the Group Events only 12 teams are allowed.
Interview questions [1]
Question 1
Most Questions are from DB only. But they have also asked questions from JAVA,C,OS,Web Technology(Some Very Basic questions). In DBMS they started like “I am organising a Sports days event. Some events are solo events and some events are Group events.” So I have to design a table to manage the info reg the participants and also they gave some scenarios .
One cannot participate more than 3 events maximum of 1 group event and 2 solo event.
For the Group Events only 12 teams are allowed.
I applied through college or university. The process took 1 day. I interviewed at Oracle (Agartala) in Aug 2017
Interview
I got the placement at the time company visited my campus. It had 4 rounds to qualify for finals. The 1st round was of aptitude question where they asked data structures MCQs and aptitude questions. The time limit to solve all the problems were quite less, so you had to manage the timings. The data structure questions consisted of linked list, tree, BST, AVL tree. One having a good knowledge of JAVA could had solved the problem easily. The second round was coding round where we were given two coding questions to solve online. The first question was a brute force approach question and the second question required graph implementation.
Interview questions [1]
Question 1
Technical Round 1:
– Brief introduction of myself.
– Then he asked me how would I create a database of people with adhar number, name and father’s name.
– Second question was to implement a calculator which would perform basic operations of +, -, * and /.
He asked me to write full working code with boundary case handled in any of the preferred language C, C++ or Java. Then he went through me resume and asked I wrote the code he asked me to explain it. Then he also asked about how would I extend my code to make it work for scientific calculations like sin(x), cos(x), etc.
– After he had gone through my resume, he asked me to explain one of the recently solved questions on any online programming platform. I had recently solved Codeforces Div 2 question and explained the question to him. He also asked my approach how I solved the question. I made him walk through the solution of O(n^2) complexity to O(n) complexity.
Technical Round 2 :
– Brief introduction of myself.
– Difference between array and linked list. Advantage of array over linked list.
– Which language I prefer out of C and C++ and why ?
– Which was my favourite data structure and algorithm and why? I replied with array and DFS and explained my reasons.
– Why I had interest in Data Structure and Algorithms ?
– Which data structure between array and linked list would I prefer if I had 10, 100 and 1000 elements ? I had to give my answer both in terms of time and space complexity.
– class A { … };
A ob; // Declaration 1
A *ptr = new A(); // Declaration 2
Difference between these two declaration.
– To write a code explaining the working of copy constructor.
– Static classes.
– Given a linked list of size “N”, how would I delete 5th element from last ?
– He asked me to write working code of reversing a linked list.
– Difference between calloc and malloc. Also he asked me to write the syntax of these two.
– Given a stack and a queue. At any point of time let stack hold N1 elements and queue hold N2 elements.
1. If N1 and N2 both are odd, swap the middle elements of stack and queue.
2. If N1 and N2 both are even, then we would have two middle elements in stack and two in queue. Out of these four elements swap the max element with the min element.
3. Do nothing otherwise.
Although I couldn’t solve the question fully, I gave him my approach and he suggested me to solve this question using min stack algorithm and implementing queue using two stack.
– Why I started competitive programming ?