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 Senior Application Developer Interview Questions, Process, and Tips

Updated 7 Feb 2022

Top Oracle Senior Application Developer Interview Questions and Answers

  • Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked ...read more
  • Q2. LRU Cache Design Question Design a data structure for a Least Recently Used (LRU) cache that supports the following operations: 1. get(key) - Return the value of the key ...read more
  • Q3. Convert a Binary Tree to its Sum Tree Given a binary tree of integers, convert it to a sum tree where each node is replaced by the sum of the values of its left and righ ...read more
View all 13 questions

Oracle Senior Application Developer Interview Experiences

3 interviews found

Interview Questionnaire 

4 Questions

  • Q1. Simple Data structure questions.
  • Q2. Binary tree balanced or not.
  • Ans. 

    A binary tree is balanced if the height of its left and right subtrees differ by at most 1.

    • A balanced binary tree has a smoother and faster search time than an unbalanced one.

    • Balancing a binary tree can be done using various algorithms like AVL tree, Red-Black tree, etc.

    • An example of a balanced binary tree is the AVL tree, where the heights of the left and right subtrees differ by at most 1.

  • Answered by AI
  • Q3. MVC pattern
  • Q4. Java questions

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly Data structures and problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't forget to ask your interviewers on what technology you will be working. 99% it will be Oracle tool which is of no use outside , or a very old technology

Senior Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Oracle
Q2. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Oracle
Q3. Convert a Binary Tree to its Sum Tree Given a binary tree of inte ... read more
asked in Fujitsu
Q4. What do you understand by autowiring in Spring Boot, and can you ... read more
asked in Fujitsu
Q5. How is an abstract class different from an interface?

I was interviewed before Feb 2021.

Round 1 - Face to Face 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 question related to DSA and then the majority of the questions were revolving around Java.

  • Q1. 

    Convert a Binary Tree to its Sum Tree

    Given a binary tree of integers, convert it to a sum tree where each node is replaced by the sum of the values of its left and right subtrees. Set leaf nodes to zero.

    ...
  • Q2. What is the garbage collector in Java?
  • Q3. Why is Java considered platform independent, while the Java Virtual Machine (JVM) is platform dependent?
  • Q4. What do you understand by marker interfaces in Java?
Round 2 - Face to Face 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, I had 2 questions of DSA where I had to first explain my approach with proper compleixt analysis and then write the pseudo code for both of them. After that, I was asked some questions from Java and MVC architecture.

  • Q1. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Q2. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Q3. Can you explain in brief the role of different MVC components?
  • Q4. How is routing handled in the MVC pattern?
  • Q5. Is it possible to import the same class or package twice in Java, and what happens during runtime?
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was inclined towards some Low Level Design Principles and some concepts from MVC.

  • Q1. Design a Railway Reservation System.
  • Q2. What is Spring MVC?
  • Q3. Can you define the concept of Filters in MVC?

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceOracle interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, DBMS, Java, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Senior Application Developer Jobs at Oracle

View all

Interview questions from similar companies

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

(1 Question)

  • Q1. Difference between class & interface
  • Ans. 

    Classes can have both implementation and data members, while interfaces can only have method signatures.

    • Classes can have constructors, interfaces cannot.

    • Classes can have access modifiers for their members, interfaces cannot.

    • A class can implement multiple interfaces, but can only inherit from one class.

    • Interfaces are used to achieve abstraction and multiple inheritance in Java.

    • Example: Class 'Animal' can have methods li...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. About current project

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain react dom in details
  • Ans. 

    React DOM is a package that provides methods for updating the DOM in response to React components.

    • React DOM is used to render React components to the DOM.

    • It provides methods like ReactDOM.render() to render components.

    • React DOM efficiently updates the DOM when the state of a component changes.

    • It handles events and updates the DOM accordingly.

    • React DOM is separate from React itself, allowing for flexibility in rendering

  • Answered by AI
  • Q2. Explain MVC in rails
  • Ans. 

    MVC in Rails is a software design pattern that separates the application into three main components: Model, View, and Controller.

    • Model: Represents the data and business logic of the application.

    • View: Represents the user interface of the application.

    • Controller: Acts as an intermediary between the Model and View, handling user input and updating the Model accordingly.

    • Example: In a Rails application, a User model would ha...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up ror

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Had a basic coding test with easy-medium questions along with some HR questions

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

(1 Question)

  • Q1. Stacks queues data structures
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Project explanation,security concept question,integration basics,what are debug logs
  • Q2. Lwc lifecycle hooks and one trigger to code

Interview Preparation Tips

Topics to prepare for Salesforce Application Support Engineer interview:
  • Java
  • Lwc
Interview preparation tips for other job seekers - It's also like normal interview don't get pressure

I applied via Approached by Company and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Coding Test 

DS & Algo based programming

Round 2 - Coding Test 

Salesforce Apex coding also making use Queue and Recursive algo.

Round 3 - Technical 

(1 Question)

  • Q1. System Design and Scalable approach

Interview Preparation Tips

Topics to prepare for Google Applications Engineer interview:
  • Data Structures
  • Algorithms
  • Salesforce Apex
Interview preparation tips for other job seekers - This interview was for Application Engineer-Salesforce. Give more importance to medium difficult level competitive programming examples of LinkedList, Queue,Array from geeksforgeeks.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write code for micro service

Round 2 - Technical 

(1 Question)

  • Q1. Explain singleton
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to one object.

    • Singleton pattern ensures that a class has only one instance and provides a global point of access to it.

    • Commonly used in scenarios where only a single instance of a class is needed, such as database connections or configuration settings.

    • Implementation can involve a private constructor, a static method to access the instance, and a ...

  • Answered by AI

Skills evaluated in this interview

Oracle Interview FAQs

How to prepare for Oracle Senior 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 Java, SQL, Oracle, Javascript and Agile Coaching.
What are the top questions asked in Oracle Senior Application Developer interview?

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

  1. Binary tree balanced or n...read more
  2. Mostly Data structures and problem solv...read more
  3. Simple Data structure question...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k 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
 • 865 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 Senior Application Developer Salary
based on 450 salaries
₹9.1 L/yr - ₹36.1 L/yr
29% more than the average Senior Application Developer Salary in India
View more details

Oracle Senior Application Developer Reviews and Ratings

based on 40 reviews

3.3/5

Rating in categories

2.5

Skill development

3.9

Work-life balance

2.4

Salary

3.7

Job security

3.2

Company culture

1.9

Promotions

2.4

Work satisfaction

Explore 40 Reviews and Ratings
Senior Applications Developer

Mumbai,

New Delhi

+6

2-7 Yrs

₹ 15-31 LPA

Senior Applications Developer

Hyderabad / Secunderabad

3-5 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 - ₹24.9 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

₹12 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹9.4 L/yr - ₹32 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