Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Oracle Team. If you also belong to the team, you can get access from here

Oracle Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 5.1k Reviews

Filter interviews by

Oracle Application Developer Interview Questions, Process, and Tips

Updated 27 Dec 2024

Top Oracle Application Developer Interview Questions and Answers

  • Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum ...read more
  • Q2. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete th ...read more
  • Q3. Partition Equal Subset Sum Problem Given an array ARR consisting of 'N' positive integers, determine if it is possible to partition the array into two subsets such that ...read more
View all 87 questions

Oracle Application Developer Interview Experiences

37 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Debugging code snippets mostly class and pointers related questions
  • Q2. Logical aptitude questions like car tyre changing for max distance
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Calicut and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

(2 Questions)

  • Q1. No of days workers do like A works 10 days B works 10 days
  • Q2. Graph based question
Round 2 - One-on-one 

(2 Questions)

  • Q1. Merge two sorted arrays
  • Ans. 

    Merge two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Use two pointers to iterate through both arrays and compare elements

    • Add the smaller element to the new array and move the pointer for that array

  • Answered by AI
  • Q2. Max heap based question
Round 3 - One-on-one 

(2 Questions)

  • Q1. Maximum length of subarray of given sum
  • Ans. 

    Find the maximum length of a subarray with a given sum in an array.

    • Use a hashmap to store the running sum and its corresponding index.

    • Iterate through the array and update the hashmap with the running sum.

    • Check if the difference between the current sum and the target sum exists in the hashmap to find the subarray length.

  • Answered by AI
  • Q2. Oops implementation question not theory question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in DSA

Skills evaluated in this interview

Application Developer Interview Questions Asked at Other Companies

asked in Fujitsu
Q1. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Oracle
Q2. Minimum Cost to Connect All Points Problem Statement Given an arr ... read more
asked in Oracle
Q3. Remove the Kth Node from the End of a Linked List You are given a ... read more
asked in Oracle
Q4. Count Subsequences Problem Statement Given an integer array ARR o ... read more
asked in Oracle
Q5. Partition Equal Subset Sum Problem Given an array ARR consisting ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Parent and Child Trees

Round 2 - One-on-one 

(2 Questions)

  • Q1. Random Pointer Linked List
  • Q2. Find area using co ordinates
  • Ans. 

    Calculate the area of a shape using coordinates

    • Determine the type of shape (e.g. rectangle, triangle, circle)

    • Use the appropriate formula for the shape to calculate the area

    • Input the coordinates into the formula to get the area

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

MCQ and DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. DSA recursive question
  • Q2. Logical question

Oracle interview questions for designations

 Senior Application Developer

 (3)

 Application Developer 2

 (2)

 Assistant Application Developer

 (1)

 Associate Application Developer

 (1)

 Application Development Engineer

 (6)

 Principal Application Engineer

 (1)

 Application Support Engineer

 (1)

 Developer

 (3)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Intersection of linked list
  • Ans. 

    Intersection of linked list is finding the common node where two linked lists merge.

    • Traverse both linked lists to find their lengths

    • Align the longer list's pointer to match the length of the shorter list

    • Iterate through both lists simultaneously to find the intersection node

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Oracle Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Tiruchirappalli and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

1 hour - Coding question-hard type palindrome type question , 10 MCQs including aptitude, math and paragraph question and finally a RESTAPI question on hackerrank platform

Round 3 - One-on-one 

(4 Questions)

  • Q1. Resume scrutiny about projects and internship
  • Q2. There N rooms in a hotel so customers will check-in and check-out a rooms simultaneously so which type of data structure you implement and it should be efficient and extension of this prebooking will also ...
  • Ans. 

    To efficiently manage room bookings and prebookings in a hotel, a priority queue data structure can be implemented.

    • A priority queue can be used to prioritize room bookings based on check-in dates.

    • When a customer checks out, the room becomes available and can be assigned to the next customer in the priority queue.

    • Prebookings can be stored separately and checked against the availability of rooms before assigning them to ...

  • Answered by AI
  • Q3. There are 25 horses in which you need to find out the fastest 3 horses. you can conduct a race among at most 5 horses to find out relative speed. At no point, you can find out the actual speed of the horse...
  • Ans. 

    Minimum 7 races required to find the top 3 fastest horses.

    • Divide the 25 horses into 5 groups of 5 horses each.

    • Conduct a race among the horses in each group to determine the fastest horse in each group.

    • Take the top 2 horses from each group and conduct a race among them to determine the fastest horse overall.

    • The winner of this race is the fastest horse.

    • Now, take the second-place horse from the final race and the second-p...

  • Answered by AI
  • Q4. There is snail which has to climb a ramp of some slope with length of 30ft while climbing the ramp the snail moves 3ft/hour up and simultaneously moves 2ft/hour down so in how much time it will take to cl...
Round 4 - One-on-one 

(3 Questions)

  • Q1. You have given array of numbers in which you need to write an algorithm to sort them (preferably in java)
  • Q2. SQL-QUERY, There is a department table with department name ,department ID and with staff members ID who are working in department and also there is a Staff members table with staff member name, staff memb...
  • Q3. How do you measure 4 liters with a 5 liters and 3 liters container

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with puzzles as they are asking so many puzzle questions in the interview, brush up your DSA skills from basics and SQL is very important for oracle. they encourage java programmers a lot.

Skills evaluated in this interview

Application Developer Jobs at Oracle

View all
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Merge intervals question of leetcode

Application Developer interview

user image EduAcademy

posted on 24 Nov 2021

 · B.E. / B.Tech
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 DSA question and mcqs

Round 2 - One-on-one 

(1 Question)

  • Q1. Minimum area of square that contains all the points
  • Ans. 

    The minimum area of a square that contains all given points is the square of the maximum distance between any two points.

    • Calculate the distance between all pairs of points

    • Find the maximum distance

    • Square the maximum distance to get the minimum area of the square

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on DSA
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

One binary search question ( aggressive cow) and one restapi

Round 2 - Technical 

(1 Question)

  • Q1. Questions on project, LRU cache and Trie
Round 3 - Technical 

(1 Question)

  • Q1. Hotel booking system design
  • Ans. 

    Design a hotel booking system.

    • Create a database to store hotel information, room availability, and bookings.

    • Develop a user interface for customers to search and book hotels.

    • Implement a payment gateway for secure transactions.

    • Include features like room selection, date selection, and guest information.

    • Consider implementing a rating and review system for hotels.

    • Ensure the system can handle concurrent bookings and prevent

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Grinded on projects, development, react concepts, 2 coding questions
  • Q2. Infix to postfix

Skills evaluated in this interview

Oracle Interview FAQs

How many rounds are there in Oracle Application Developer interview?
Oracle interview process usually has 2-3 rounds. The most common rounds in the Oracle interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Oracle Application Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Oracle. The most common topics and skills that interviewers at Oracle expect are Javascript, SQL, Java, Application Development and Oracle.
What are the top questions asked in Oracle Application Developer interview?

Some of the top questions asked at the Oracle Application Developer interview -

  1. Puzzle: – Two persons X and Y are sitting side by side with a coin in each’...read more
  2. In a bag you have 20 black balls and 16 red balls.When you take out 2 black bal...read more
  3. Design a website similar to bookmyshow.com for booking cinema tickets but it mu...read more
How long is the Oracle Application Developer interview process?

The duration of Oracle Application Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Oracle Application Developer Interview Process

based on 27 interviews

5 Interview rounds

  • Technical Round - 1
  • Coding Test Round
  • Technical Round - 2
  • HR Round
  • Personal Interview1 Round
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Google Interview Questions
4.4
 • 861 Interviews
Cisco Interview Questions
4.1
 • 395 Interviews
SAP Interview Questions
4.2
 • 304 Interviews
Salesforce Interview Questions
4.1
 • 270 Interviews
Adobe Interview Questions
4.0
 • 249 Interviews
View all
Oracle Application Developer Salary
based on 778 salaries
₹6.8 L/yr - ₹29 L/yr
40% more than the average Application Developer Salary in India
View more details

Oracle Application Developer Reviews and Ratings

based on 80 reviews

3.6/5

Rating in categories

3.1

Skill development

4.0

Work-life balance

3.4

Salary

4.1

Job security

3.5

Company culture

2.6

Promotions

3.3

Work satisfaction

Explore 80 Reviews and Ratings
Applications Developer 4

Thiruvananthapuram

3-6 Yrs

Not Disclosed

Applications Developer 5

Hyderabad / Secunderabad

10-14 Yrs

Not Disclosed

Applications Developer 4

Bangalore / Bengaluru

6-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
2.4k salaries
unlock blur

₹10.2 L/yr - ₹40 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Principal Consultant
2k salaries
unlock blur

₹10.9 L/yr - ₹36 L/yr

Senior Member of Technical Staff
1.8k salaries
unlock blur

₹13.4 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹9.5 L/yr - ₹30 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.8
Compare

Salesforce

4.0
Compare

IBM

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview