Oracle interview experience Real time questions & tips from candidates to crack your interview

Application Developer

Oracle
upvote
share-icon
3 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 Months
Topics: Algorithms, DS , Networking ,OS , Data base
Tip
Tip

Tip 1 : must be focus on goal
Tip 2 : consistency regular basis 
Tip 3 : solve old question as much as possible 
Tip 4 : Do some projects as well

Application process
Where: Linkedin
Eligibility: i joined oracle as a experienced candidate so there was no any particular eligibility criteria
Resume Tip
Resume tip

Tip 1 : Dont put extra thing whatever u know just mention that
Tip 2 : Use more technical key word on resume

Interview rounds

01
Round
Medium
Video Call
Duration40 to 50 mintues
Interview date20 May 2021
Coding problem1

first round only there was basic intro and then about previous company experinece along with some technical stuff

1. Insertion In Doubly Linked List

Easy
15m average time
95% success
0/40
Asked in companies
Red HatMicrosoftAmazon

You are given a Doubly linked list, where every node in the linked list contains two pointers ‘next’ and ‘prev’ which point to the next node and previous node in the list respectively. All nodes have some positive integer value associated with them. Your task is to insert an integer value ‘VAL’ in the linked list at a given position ‘K’.

Note:

The position given will always be less than or equal to the length of the linked list.
Assume that the Indexing for the linked list starts from 0.
EXAMPLE:
Input :
‘K’ = 3, ‘VAL’ = 4
list = [1, 2, 3]
Output: [1, 2, 3, 4]

The ‘VAL’ = 4, is inserted at end of the above doubly linked list.
Problem approach

first of all create a new node and then allocate memory for new node. and assign the data to new node.
then need to set previous and next pointers of new node. point next of new node to the first node of the doubly linked list. point previous to null reorganize the pointers 
Make new node as head node.

Try solving now
02
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date22 May 2021
Coding problem1

1. Build Min Heap

Moderate
30m average time
70% success
0/80
Asked in companies
AdobeDunzoAmazon

You are given an array 'ARR' of integers having 'N' elements. Your task is to convert the input array into a min-Binary Heap.

A min-Binary heap is a complete binary tree in which the value of each internal node is smaller than or equal to the values of the children of that node.

Note :
1. Input array follows 0 - based indexing. 

2. After constructing the min-heap, the Left child of the 'i-th' node should be present at the (2*i + 1)-th index if it exists.

3. After constructing the min-heap, the Right child of the 'i-th' node should be present at the (2*i + 2)-th index if it exists.

4. Note that you do not need to create a tree, just update the array.
Problem approach

basic approach for heap

Try solving now
03
Round
Medium
HR Round
Duration40 minuets
Interview date30 May 2021
Coding problem1

1. Basic HR questions

had discussion about last 2 interview round and also about previous company work

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
Application Developer
4 rounds | 11 problems
Interviewed by Oracle
3526 views
0 comments
0 upvotes
company logo
Application Developer
4 rounds | 12 problems
Interviewed by Oracle
1228 views
0 comments
0 upvotes
company logo
Application Developer
4 rounds | 12 problems
Interviewed by Oracle
953 views
0 comments
0 upvotes
company logo
Application Developer
3 rounds | 4 problems
Interviewed by Oracle
1840 views
0 comments
0 upvotes