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

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

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.

    ...
  • Ans. 

    Approach : 

    1) Build the Sum Tree
    1.1) Update the root data with the sum of the left and right children’s data given that the root itself is not null.
    1.2) Check the left node and right node. If they are not null, take their sum and update the root data.
    1.3) Extend this idea further by making a recursive call on to the left and right subtrees.

    2) Do a pre order traversal.
    2.1) To keep track of the node data in the preo...

  • Answered Anonymously
  • Q2. What is the garbage collector in Java?
  • Ans. 

    Answer :

    1) Garbage Collection in Java is a process by which the programs perform memory management automatically.

    2) The Garbage Collector(GC) finds the unused objects and deletes them to reclaim the memory. I

    3) In Java, dynamic memory allocation of objects is achieved using the new operator that uses some memory and the memory remains allocated until there are references for the use of the object.

    4) When there are no r...

  • Answered Anonymously
  • Q3. Why is Java considered platform independent, while the Java Virtual Machine (JVM) is platform dependent?
  • Ans. 

    JVM is platform dependent because it takes java byte code and generates byte code for the current operating system. So Java software is platform dependent but Java language is platform independent because different operating system have different JVMs.

  • Answered Anonymously
  • Q4. What do you understand by marker interfaces in Java?
  • Ans. 

    Marker interfaces, also known as tagging interfaces are those interfaces that have no methods and constants defined in them. They are there for helping the compiler and JVM to get run time-related information regarding the objects.

  • Answered Anonymously
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...

  • Ans. 

    Answer :

    Structure of an LRU Cache :

    1) In practice, LRU cache is a kind of Queue — if an element is reaccessed, it goes to the end of the eviction order.
    2) This queue will have a specific capacity as the cache has a limited size. Whenever a new element is brought in, it is added at the head of the queue. When eviction happens, it happens from the tail of the queue.
    3) Hitting data in the cache must be done in constant ti...

  • Answered Anonymously
  • 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...

  • Ans. 

    Approach (Using 2-pointers) : 

    1) Initialize two pointers ptr1 and ptr2 at the head1 and head2.
    2) Traverse through the lists,one node at a time.
    3) When ptr1 reaches the end of a list, then redirect it to the head2.
    4) Similarly when ptr2 reaches the end of a list, redirect it the head1.
    5) Once both of them go through reassigning, they will be equidistant from the collision point
    6) If at any node ptr1 meets ptr2, the...

  • Answered Anonymously
  • Q3. Can you explain in brief the role of different MVC components?
  • Ans. 

    The different MVC components have the following roles -
    1) Presentation: This component takes care of the visual representation of a particular abstraction in the application.

    2) Control: This component takes care of the consistency and uniformity between the abstraction within the system along with their presentation to the user. It is also responsible for communicating with all other controls within the MVC system.

    3) A...

  • Answered Anonymously
  • Q4. How is routing handled in the MVC pattern?
  • Ans. 

    There is a group of routes called the RouteCollection, which consists of registered routes in the application. The RegisterRoutes method records the routes in this collection. A route defines a URL pattern and a handler to use if the request matches the pattern.

    The first parameter to the MapRoute method is the name of the route. The second parameter will be the pattern to which the URL matches. The third parameter migh...

  • Answered Anonymously
  • Q5. Is it possible to import the same class or package twice in Java, and what happens during runtime?
  • Ans. 

    It is possible to import a class or package more than once, however, it is redundant because the JVM internally loads the package or class only once.

  • Answered Anonymously
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.
  • Ans. 

    Tip 1 : Firstly, remember that the system design round is extremely open-ended and there’s no such thing as a standard answer. Even for the same question, you’ll have a totally different discussion with different interviewers.
    Tip 2 : Before you jump into the solution always clarify all the assumptions you’re making at the beginning of the interview. Ask questions to identify the scope of the system. This will clear the...

  • Answered Anonymously
  • Q2. What is Spring MVC?
  • Ans. 

    1) The Spring MVC or Spring Web MVC can be defined as a framework that provides a “Model View Controller” (MVC) architecture in the application as well as ready-components implemented for developing adjustable and adaptable web applications. 

    2) It is actually a Java-based framework intended to build web applications. It works on the Model-View-Controller design approach. 

    3) This framework also makes use of al...

  • Answered Anonymously
  • Q3. Can you define the concept of Filters in MVC?
  • Ans. 

    There are situations where I want to implement some logic either prior to the execution of the action method or right after it. In that scenario, the Action Filters are used. Filters are used to determine the logic needed for executing before or after the action method gets executed. Action methods make use of the action filters as an attribute. Different types of MVC action filter are:

    1) Action filter (that implements...

  • Answered Anonymously

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 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?

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

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 SQL, Java, 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 452 salaries
₹9.1 L/yr - ₹36.1 L/yr
30% 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

Hyderabad / Secunderabad

3-11 Yrs

₹ 9-19 LPA

Senior Application Developer - Java J2EE & React JS

Bangalore / Bengaluru

7-11 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
2.4k salaries
unlock blur

₹10.1 L/yr - ₹40 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹9 L/yr - ₹24.6 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.5 L/yr - ₹30 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.8
Compare

Salesforce

4.1
Compare

IBM

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