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

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. Puzzle: – Two persons X and Y are sitting side by side with a coin in each’s hand. The game is to simultaneously flip the coin till anyone wins. Player X will win if he g ...read more
  • Q3. Count Subsequences Problem Statement Given an integer array ARR of size N , your task is to find the total number of subsequences in which all elements are equal. Explan ...read more
View all 87 questions

Oracle Application Developer Interview Experiences

36 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa and oop, cn, be confident

Round 2 - Technical 

(1 Question)

  • Q1. Sum 2 linkedlists in efficient way
  • Ans. 

    Use iterative approach to traverse both linked lists and sum corresponding nodes while keeping track of carry.

    • Iterate through both linked lists simultaneously

    • Sum corresponding nodes and carry from previous sum

    • Create a new linked list to store the sum

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and prepared

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2023. There were 5 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 - HR 

(1 Question)

  • Q1. Basic Hr Questions
Round 3 - Technical 

(1 Question)

  • Q1. Question 1:- Two Sum Question 2:- Three Sum Question 3:- Anagram in String
Round 4 - Technical 

(3 Questions)

  • Q1. Largest element in window size K
  • Ans. 

    Find the largest element in a window of size K in an array.

    • Iterate through the array and maintain a deque to store the indices of elements in decreasing order.

    • Remove indices from the front of the deque that are outside the current window.

    • The front of the deque will always have the index of the largest element in the current window.

  • Answered by AI
  • Q2. Design Tic Tac Toe
  • Ans. 

    Design a Tic Tac Toe game

    • Create a 3x3 grid to represent the game board

    • Allow two players to take turns marking X and O on the grid

    • Check for win conditions after each move to determine the winner

    • Handle tie game if all spaces are filled without a winner

  • Answered by AI
  • Q3. Sql query using joins
  • Ans. 

    SQL query using joins

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
Round 5 - Technical 

(3 Questions)

  • Q1. Design circular doubly linked list with all operations.
  • Ans. 

    Circular doubly linked list is a data structure where each node has a reference to both the next and previous nodes, forming a circular loop.

    • Create a Node class with data, next, and prev pointers

    • Implement operations like insert, delete, search, and display

    • Ensure the last node's next pointer points to the first node and the first node's prev pointer points to the last node

  • Answered by AI
  • Q2. Discussion on past projects, toughest problem solved till now.
  • Q3. Different types of searching and sorting algo discussion.
  • Ans. 

    Searching and sorting algorithms are essential in programming for efficiently organizing and retrieving data.

    • Searching algorithms: linear search, binary search, depth-first search, breadth-first search

    • Sorting algorithms: bubble sort, selection sort, insertion sort, merge sort, quick sort

    • Examples: Searching for a specific item in a list, sorting a list of numbers in ascending order

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Applying, focus was to code problems in Java.

Skills evaluated in this interview

Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. Minimum Cost to Connect All Points Problem Statement Given an arr ... read more
asked in Fujitsu
Q2. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Oracle
Q3. Puzzle: – Two persons X and Y are sitting side by side with a coi ... read more
asked in Oracle
Q4. Count Subsequences Problem Statement Given an integer array ARR o ... read more
asked in Oracle
Q5. Remove the Kth Node from the End of a Linked List You are given a ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

1 coding question on binary search
1 rest API question
15 English And Aptitude mcq

Round 3 - One-on-one 

(1 Question)

  • Q1. Project, trie, lru cache
Round 4 - One-on-one 

(1 Question)

  • Q1. System design question
Round 5 - One-on-one 

(1 Question)

  • Q1. Projects, Reactjs, infix to postfix code
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. General questions related to Oracle PLSQL

Oracle interview questions for designations

 Senior Application Developer

 (3)

 Application Developer 2

 (2)

 Associate Application Developer

 (1)

 Assistant Application Developer

 (1)

 Application Development Engineer

 (6)

 Application Support Engineer

 (1)

 Principal Application Engineer

 (1)

 Developer

 (2)

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 before Jan 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions of which one was using REST API

Round 2 - Technical 

(3 Questions)

  • Q1. About personal projects and intern
  • Q2. About system design.... design an hotel room allocation system
  • Q3. Design hashmap from scratch
  • Ans. 

    Designing a hashmap from scratch

    • A hashmap is a data structure that allows for efficient key-value pair storage and retrieval

    • It typically uses an array and a hashing function to map keys to array indices

    • Collision handling techniques like chaining or open addressing may be used

    • Operations like insert, delete, and search can be implemented using the hashmap

    • Example: Designing a hashmap to store student records with their ro

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Object oriented programming and more system design along with some SQL queries

Interview Preparation Tips

Topics to prepare for Oracle Application Developer interview:
  • OOPS
  • DSA
  • Database management system
Interview preparation tips for other job seekers - having a real good set of projects or good GPA will help you through the rounds

Skills evaluated in this interview

Get interview-ready with Top Oracle Interview Questions

Application Developer Interview Questions & Answers

user image Gaurav Kumawat CSE IIT-BHU

posted on 15 Oct 2023

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

MCQ rounds based on Java, OOPS, SQL,DBMS, etc

Round 2 - One-on-one 

(1 Question)

  • Q1. DSA Questions and Questions based on project.

Application Developer Jobs at Oracle

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

This round contains question of SQL, Java, DSA

Round 3 - Technical 

(2 Questions)

  • Q1. This round contains question of SQL, Java, DSA
  • Q2. SQL queries, Java concepts, DSA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at International Institute of Information Technology (IIIT), Allahabad and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

It had 2 simple coding questions.

Round 3 - Technical 

(1 Question)

  • Q1. Intro -> projects-> sql queries -> 1coding ques
Round 4 - Technical 

(1 Question)

  • Q1. Intro -> 2 coding ques on queue and linked lists -> projects
Round 5 - Technical 

(1 Question)

  • Q1. Intro -> projects -> 1 system design ques -> oops ques

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for sql queries neatly. Major coding ques will be around trees, linked Lists and graphs.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Easy dsa question
  • Q2. Core java question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Information Technology (IIIT), Vadodara and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Two DSA Questions and one SQL Query
Time: 90 minutes
Platform: Hackerank

Round 2 - Technical 

(1 Question)

  • Q1. 1. OOPS Concept 2. 1 easy level DSA question 3. 1 SQL Query
Round 3 - Technical 

(1 Question)

  • Q1. 1. 2 Medium Level DSA Question 2. 1 SQL Query

Interview Preparation Tips

Topics to prepare for Oracle Application Developer interview:
  • DSA
  • OOPS
  • Operating Systems
  • SQL
Interview preparation tips for other job seekers - Keep Interview Interactive. Try to explain the DSA question from the root.

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, Application Development, PLSQL and Java.
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
Oracle Application Developer Salary
based on 703 salaries
₹7.5 L/yr - ₹22 L/yr
41% 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

Hyderabad / Secunderabad

15-17 Yrs

Not Disclosed

Applications Developer 4

Hyderabad / Secunderabad

6-10 Yrs

Not Disclosed

Applications Developer 4

Bangalore / Bengaluru

10-12 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.1 L/yr - ₹25 L/yr

Principal Consultant
2k salaries
unlock blur

₹14 L/yr - ₹36 L/yr

Senior Member of Technical Staff
1.8k salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹9.7 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