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

Clear (1)

Oracle Software Engineer Interview Questions, Process, and Tips

Updated 21 Feb 2025

Top Oracle Software Engineer Interview Questions and Answers

  • Q1. Reverse Words in a String: Problem Statement You are given a string of length N . Your task is to reverse the string word by word. The input may contain multiple spaces ...read more
  • Q2. Minimum Number of Platforms Needed Problem Statement You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to ...read more
  • Q3. coding question: given a vector numbers, return the index of the vector which has the longest length palindrome
View all 15 questions

Oracle Software Engineer Interview Experiences

36 interviews found

Round 1 - Technical 

(1 Question)

  • Q1. 2 Medium level leetCode questions
Round 2 - Technical 

(1 Question)

  • Q1. 1 Medium level and 1 Easy level leetCode questions, Java basics and questions on your projects.
Round 3 - Technical 

(1 Question)

  • Q1. Some Java related questions and managerial related too.
Round 4 - Behavioral 

(1 Question)

  • Q1. Why you want to join oracle?
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure your basics and fundamentals should be clear
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed before Jul 2023.

Round 1 - Coding Test 

Standard questions were asked

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked to negotiate salary

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2022. There were 5 interview rounds.

Round 1 - Aptitude Test 

Every topic was asked related to Computer Science.

Round 2 - Coding Test 

Graph-related question, DP question

Round 3 - Technical 

(1 Question)

  • Q1. C++ concepts, C concepts, OOP, 1 easy map question
Round 4 - One-on-one 

(1 Question)

  • Q1. OOP concepts, easy standard SQL question, 1 easy tricky coding question.
Round 5 - One-on-one 

(1 Question)

  • Q1. 2 very easy coding questions, 1 hard trie question, rest was time-wasting discussions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Java OOP, Linux, networking
Round 3 - One-on-one 

(1 Question)

  • Q1. Java coding test
Round 4 - One-on-one 

(1 Question)

  • Q1. Scenario base question

Oracle interview questions for designations

 Senior Software Engineer

 (31)

 Principal Software Engineer

 (11)

 Associate Software Engineer

 (10)

 Software Engineer II

 (2)

 Software Engineer Trainee

 (1)

 Software Development Engineer

 (1)

 Software Support Engineer

 (1)

 Software Engineer IV

 (1)

I applied via Campus Placement and was interviewed before Oct 2021. 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 Resume tips
Round 2 - Aptitude Test 

First round was mix of aptitude, cs fundamentals, quant, programming and flow chart based mcq.
Note-
1- There was timer for each sections and subsections.
2- Once you move ahead of a ques then u cant go back on previous ques.

Round 3 - Coding Test 

Data Structure & Algorithm based ques.
Toughness- Leetcode medium.
Few ques on dbms in the end.
Note- Complete code from scratch to be written.

Round 4 - Coding Test 

Data Structure &Algorithm based ques.
Toughness- Leetcode medium.
In the end, project was discussed briefly.
Note- Complete code from scratch.

Round 5 - Coding Test 

Coding + HR combined.
Many coding ques were ask and then ques were manipulated to come up with new logic.
Here, only pseudo code based discussion.
In the end, entire resume was discussed from college, project, future goals and hr based ques.

Interview Preparation Tips

Topics to prepare for Oracle Software Engineer interview:
  • String
  • Array
  • Tree
  • Stack
  • Bit manipulation
  • Normalisation in DBMS
  • Database Architecture
  • Project based discussion
Interview preparation tips for other job seekers - -Logic presentation skills matter a lot.
- If stuck somewhere then discuss your mind with interviewer, he will definetly give you some clue.
- Before writing code discuss ques with interview so that you get right what interviewer is intending to ask.
- Be confident, if you are unable to answer a few then still you chance of selection is not bleak.

Get interview-ready with Top Oracle Interview Questions

I applied via Company Website and was interviewed in Mar 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 Resume tips
Round 2 - Aptitude Test 

About Java

Interview Preparation Tips

Topics to prepare for Oracle Software Engineer interview:
  • Core Java
Interview preparation tips for other job seekers - Job seeking is never fun, of course, but a well-prepared job seeker is more likely to find the process less stressful.

Software Engineer Jobs at Oracle

View all

I applied via Campus Placement and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

It consists of 4 section , quants verbal reasoning and data structures were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Delete nth node from end of linked list
  • Ans. 

    Delete nth node from end of linked list

    • Use two pointers, one to traverse the list and another to keep track of the nth node from the end

    • Once the nth node is reached, move both pointers until the end of the list

    • Delete the node pointed by the second pointer

  • Answered by AI
  • Q2. Rotate a linked list
  • Ans. 

    Rotate a linked list

    • Create a new node and make it the head

    • Traverse the list to find the tail and connect it to the old head

    • Update the tail to point to null

    • Handle edge cases like empty list or rotating by 0 positions

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be clear with basics and prepare standard coding questions and be clear with cs fundamentals

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jun 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Core Java basics ,opps concepts
  • Q2. Web development framework of jaba
  • Ans. 

    Java web development frameworks include Spring, Hibernate, Struts, and Play.

    • Popular Java web development frameworks include Spring, Hibernate, Struts, and Play

    • Spring is a widely used framework for building enterprise Java applications

    • Hibernate is an ORM framework for mapping Java objects to database tables

    • Struts is a framework for building web applications using the MVC design pattern

    • Play is a lightweight web framework

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep applying

Skills evaluated in this interview

I was interviewed in Oct 2020.

Round 1 - Video Call 

Round duration - 50 minutes
Round difficulty - Medium

Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

1. How to read text file and show words of file in sorted order by their frequency.

2. Gave me a puzzle: three jars with fruits are incorrectly labeled, find the minimum number of trial to correctly label them, given that in one trial you can take fruit out from a jar.

3. What is a prime number? How to find a prime number? 

4. Asked me what is my hobby.

  • Q1. 

    Minimum Number of Platforms Needed Problem Statement

    You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of pl...

  • Ans. 

    The task is to determine the minimum number of platforms needed at a railway station based on arrival and departure times of trains.

    • Sort the arrival and departure times in ascending order.

    • Use two pointers to track overlapping schedules.

    • Increment platform count when a new train arrives before the previous one departs.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

1. Gave me one puzzle: 1000 light bulbs switched on/off by 1000 persons passing by
2. What is event driven programming? ( was not able to answer )
3. What is micro services? ( was not able to answer )
4. What improvement do you feel after leaving job and joining masters?

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string word by word, removing leading/trailing spaces and extra spaces between words.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from NIT Calicut. I applied for the job as Software Engineer in BengaluruEligibility criteriaAbove 8 CGPAOracle interview preparation:Topics to prepare for the interview - Data Structures, Operating System, Database, Puzzles, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 350 coding questions
Tip 2 : Have a recent project
Tip 3 : Have good knowledge of OS,DBMS

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. System design of traffic signal
  • Ans. 

    Design a traffic signal system

    • Identify the number of lanes and intersections

    • Determine the traffic flow and peak hours

    • Choose appropriate sensors and controllers

    • Implement a synchronization algorithm

    • Consider emergency vehicle prioritization

    • Include pedestrian crossing signals

    • Ensure compliance with local regulations

  • Answered by AI
  • Q2. Data structures
  • Q3. Oops spring jdbc
  • Q4. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.

    • Hashmap uses hashing function to map keys to indices in an array

    • Collisions can occur when multiple keys map to the same index, which can be resolved using separate chaining or open addressing

    • Java implementation: HashMap map = new HashMap<>();

  • Answered by AI
  • Q5. Pattern printing code
  • Ans. 

    Printing patterns using code

    • Identify the pattern to be printed

    • Use loops to print the pattern

    • Adjust the loop variables to control the pattern

    • Use conditional statements to modify the pattern

    • Examples: printing stars, triangles, squares, etc.

  • Answered by AI
  • Q6. Common point in linked list
  • Ans. 

    Common point in linked list refers to the node where two or more linked lists intersect.

    • The common point can be found by traversing both linked lists and comparing the nodes.

    • The common point can also be found by using two pointers, one for each linked list, and moving them until they meet at the common point.

    • Examples include finding the intersection point of two linked lists or finding the loop in a linked list.

  • Answered by AI
  • Q7. Optimization
  • Q8. Synchronisation
  • Q9. Threads

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Oracle Interview FAQs

How many rounds are there in Oracle Software Engineer interview?
Oracle interview process usually has 2-3 rounds. The most common rounds in the Oracle interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Oracle Software Engineer 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, Javascript, Software Development and HTML.
What are the top questions asked in Oracle Software Engineer interview?

Some of the top questions asked at the Oracle Software Engineer interview -

  1. coding question: given a vector numbers, return the index of the vector which h...read more
  2. 2) implement stack using queue 3) return triplets with given target ...read more
  3. Convert a number to english form that how it can be read in englis...read more
How long is the Oracle Software Engineer interview process?

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

Recently Viewed

INTERVIEWS

Oracle

No Interviews

JOBS

Nuvama Wealth and Investment

No Jobs

DESIGNATION

SALARIES

DB Schenker

REVIEWS

Knorr-Bremse

No Reviews

JOBS

Epiroc

No Jobs

JOBS

Skyleaf Consultants

No Jobs

JOBS

Fusion Microfinance

No Jobs

JOBS

Inqubex Consulting

No Jobs

Tell us how to improve this page.

Oracle Software Engineer Interview Process

based on 27 interviews

3 Interview rounds

  • Resume Shortlist Round
  • Technical Round - 1
  • Technical Round - 2
View more
Oracle Software Engineer Salary
based on 1.2k salaries
₹7 L/yr - ₹24 L/yr
89% more than the average Software Engineer Salary in India
View more details

Oracle Software Engineer Reviews and Ratings

based on 105 reviews

3.9/5

Rating in categories

3.5

Skill development

4.2

Work-life balance

3.3

Salary

4.1

Job security

3.9

Company culture

2.7

Promotions

3.5

Work satisfaction

Explore 105 Reviews and Ratings
Software Engineer (Data Engineering, Data warehouse)

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Software Engineer (IC2)

Bangalore / Bengaluru

1-3 Yrs

₹ 6.5-33 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