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

Updated 7 Feb 2022

Top Oracle Senior Application Developer Interview Questions and Answers

  • 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 ...read more
  • Q2. 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
  • Q3. 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
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. 

    Convert a binary tree to a sum tree by replacing each node with the sum of its left and right subtrees, setting leaf nodes to zero.

    • Traverse the tree in postorder fashion to calculate the sum of left and right subtrees for each node.

    • Set leaf nodes to zero by checking if a node has no children.

    • Update the value of each node to be the sum of its left and right subtrees.

    • Return the level order traversal of the converted sum

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

    Garbage collector in Java is a built-in mechanism that automatically manages memory by reclaiming unused objects.

    • Garbage collector runs in the background to identify and delete objects that are no longer needed.

    • It helps prevent memory leaks and optimize memory usage.

    • Examples of garbage collectors in Java include Serial, Parallel, CMS, and G1.

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

    Java is platform independent because it compiles code into bytecode that can run on any system with a JVM, which is platform dependent due to its reliance on the underlying hardware and operating system.

    • Java code is compiled into bytecode, which can run on any system with a JVM installed.

    • JVM acts as an intermediary between the Java code and the underlying hardware/OS, making it platform dependent.

    • The JVM interprets the...

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

    Marker interfaces in Java are interfaces with no methods, used to mark classes for special treatment.

    • Marker interfaces have no methods, they simply mark a class as having a certain capability or characteristic.

    • Examples of marker interfaces in Java include Serializable, Cloneable, and Remote.

    • Classes implementing marker interfaces can be treated differently by the JVM or other components based on the interface they imple

  • Answered by AI
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. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Implement a doubly linked list to keep track of the order of keys based on their recent usage.

    • Use a hashmap to store key-value pairs for quick access and update.

    • When capacity is reached, evict the least recently used item before inserting a new item.

    • Handle get and put operations efficiently to maintain ...

  • Answered by AI
  • 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. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find their lengths and the difference in lengths

    • Move the pointer of the longer list by the difference in lengths

    • Traverse both lists simultaneously until they meet at the merging point

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

    MVC components include Model, View, and Controller for organizing code in a web application.

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

    • View: Represents the UI and presentation layer of the application.

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

    • Example: In a web application, a user interacts with the View (UI), which sends requ...

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

    Routing in MVC pattern is handled by a routing engine which maps incoming URLs to specific controller actions.

    • Routing is the process of matching incoming URLs to specific controller actions in the MVC pattern.

    • Routes are defined in a routing table which maps URLs to corresponding controller actions.

    • The routing engine uses the routing table to determine which controller and action should handle a particular request.

    • Route...

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

    Yes, it is possible to import the same class or package twice in Java, but it will not cause any issues during runtime.

    • Importing the same class or package multiple times in Java will not result in any errors or conflicts.

    • The Java compiler will simply ignore duplicate imports and only include the class or package once in the compiled code.

    • This behavior helps in avoiding unnecessary redundancy and keeps the code clean an

  • Answered by AI
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. 

    Railway Reservation System for booking train tickets.

    • Users can search for trains based on source and destination stations.

    • Users can select preferred train, class, and seat.

    • System should handle payment processing and generate e-tickets.

    • Admin panel for managing trains, schedules, and bookings.

    • Integration with SMS/email notifications for updates.

    • Database to store train details, user information, and booking history.

  • Answered by AI
  • Q2. What is Spring MVC?
  • Ans. 

    Spring MVC is a framework used for building web applications in Java.

    • Spring MVC stands for Model-View-Controller, which is a design pattern for separating concerns in a web application.

    • It provides a powerful model for building flexible and loosely coupled web applications.

    • It integrates with other Spring frameworks like Spring Boot, Spring Security, and Spring Data.

    • It uses annotations to simplify configuration and reduc...

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

    Filters in MVC are components that allow pre-processing and post-processing of requests and responses.

    • Filters are used to perform common functionalities like logging, authentication, authorization, etc.

    • They can be applied globally to all controllers or selectively to specific controllers or actions.

    • Examples of filters include Authorization filters, Action filters, Result filters, and Exception filters.

  • Answered by AI

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. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Fujitsu
Q2. What do you understand by autowiring in Spring Boot, and can you ... read more
asked in Oracle
Q3. Convert a Binary Tree to its Sum Tree Given a binary tree of inte ... read more
asked in Oracle
Q4. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Fujitsu
Q5. Why is Java considered platform independent, while the Java Virtu ... read more

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

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, Exception Handling & other Core Java concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Search & Contact recruiters who hire for ur domain on LinkedIn & share ur resume with them, search relevant jobs on LinkedIn & apply.

Go to companies' websites & create ur profile.

Update ur profile daily on naukri. 👍🏻

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of redux and react es6 js css3

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all go through the job description .Brush up all your basics .And do practice hands on coding.

I applied via Naukri.com and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice experience

I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Related to job role

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall interview was good. most of the questions they have asked basics of SQL, SSIS transformations etc.

Interview Questionnaire 

1 Question

  • Q1. In C# --> Abstraction, Interface , Abstract Method, Abstract Class, Polymorphisms, Encapsulation ,Inheritance, Serialization,
  • Ans. 

    C# concepts including abstraction, interface, abstract method, abstract class, polymorphism, encapsulation, inheritance, and serialization.

    • Abstraction: hiding implementation details

    • Interface: defining a contract for behavior

    • Abstract method: method without implementation

    • Abstract class: class with one or more abstract methods

    • Polymorphism: ability of objects to take on multiple forms

    • Encapsulation: bundling data and behavi...

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself?
  • Q2. Normalization concept,Java basics inheritance overloading, encapsulation ,update table ,related to projects in final year
  • Q3. Situation based questions based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident and be genuine whatever you explain that should be very specific to question and if u are feeling narvous then put a gentle smile on your face,if you don't know about question ask then try little bit and say sir I will read about this.
All the Best😊😊
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Campus Placement and was interviewed before Nov 2021. There were 3 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 - Assignment 

Best wishes to you know that you have to come to the day da

Round 3 - Group Discussion 

Hi sir I have sent the best for first year and all the best for your reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy easy easy drawing with this picture 🖼️ and avarampatti photos and videos are you please send panta and all the best for your reference

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, Oracle, Java, 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.

Oracle Senior Application Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Google Interview Questions
4.4
 • 821 Interviews
Amdocs Interview Questions
3.7
 • 512 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
View all
Oracle Senior Application Developer Salary
based on 438 salaries
₹9.5 L/yr - ₹30 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 41 reviews

3.4/5

Rating in categories

2.5

Skill development

3.9

Work-life balance

2.6

Salary

3.7

Job security

3.2

Company culture

2.0

Promotions

2.5

Work satisfaction

Explore 41 Reviews and Ratings
Senior Applications Developer

Bangalore / Bengaluru

3-5 Yrs

₹ 19-24 LPA

Senior Application Developer

Hyderabad / Secunderabad

4-5 Yrs

Not Disclosed

Senior Application Developer - PLSQL

Bangalore / Bengaluru

5-8 Yrs

₹ 8.75-30 LPA

Explore more jobs
Senior Software Engineer
2.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Consultant
2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Member of Technical Staff
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.7
Compare

Salesforce

4.0
Compare

IBM

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