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 SDE Interview Questions and Answers

Updated 5 Mar 2024

Oracle SDE Interview Experiences

4 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2024

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

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Leetcode- Climb stairs (medium)
  • Q2. Reverse linkedlist
Round 2 - Technical 

(1 Question)

  • Q1. Leetcode- Rotten oranges matrix

SDE Interview Questions & Answers

user image kilari harshavardhan

posted on 13 Oct 2023

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

Basic dp and graph questions

Round 2 - Technical 

(2 Questions)

  • Q1. Left leaf nodes sum in a binary tree
  • Ans. 

    Calculate the sum of all left leaf nodes in a binary tree.

    • Traverse the binary tree using depth-first search (DFS)

    • Check if a node is a leaf node and if it is a left child

    • Add the value of the left leaf node to the sum

    • Recursively traverse the left and right subtrees

  • Answered by AI
  • Q2. About my past projects
Round 3 - HR 

(1 Question)

  • Q1. Discussion about myself and my projects

Interview Preparation Tips

Interview preparation tips for other job seekers - keep grinding on dsa and dbms to crack it.

Skills evaluated in this interview

SDE Interview Questions Asked at Other Companies

asked in Infosys
Q1. Longest Increasing SubsequenceFor a given array with N elements, ... read more
asked in Infosys
Q2. Return Subsets Sum to KGiven an integer array 'ARR' of size 'N' a ... read more
asked in Nagarro
Q3. Puzzle QuestionHow do we measure forty-five minutes using two ide ... read more
asked in Nagarro
Q4. Partition to K equal sum subsetsYou are given an array of 'N' int ... read more
asked in Nagarro
Q5. Sort A “K” Sorted Doubly Linked List You’re given a doubly-linked ... read more

SDE Interview Questions & Answers

user image Anonymous

posted on 29 Dec 2022

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

I applied via LinkedIn and was interviewed in Nov 2022. 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 - Aptitude Test 

General questions like reasoning and maths

Round 3 - Coding Test 

General DSA questions were asked like Linked list etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont panic and give yr best to achieve a goal in your life

SDE Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.

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 - Aptitude Test 

Aptitude and technical questions

Round 3 - Coding Test 

2 coding questions with choice of language

Round 4 - Technical 

(2 Questions)

  • Q1. Technical questions
  • Q2. Programming questions

Oracle interview questions for designations

 SDE (Software Development Engineer)

 (3)

 Applications Engineer

 (23)

 Consultant

 (11)

 Intern

 (8)

 Business Analyst

 (7)

 fresher

 (6)

 Senior Application Engineer

 (5)

 Senior Analyst

 (5)

Interview questions from similar companies

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

(2 Questions)

  • Q1. Traverse Binary Tree
  • Q2. How does bittorent work

SDE Interview Questions & Answers

Google user image Paltasingi Poojitha 4-Year B.Tech. Electrical Engineering

posted on 12 Nov 2024

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find minimum no. of increment operations to make array unique
  • Ans. 

    To make an array of strings unique, count the number of duplicate elements and increment them accordingly.

    • Iterate through the array and keep track of the frequency of each element.

    • For each duplicate element, increment it to make the array unique.

    • Return the total number of increment operations needed.

  • Answered by AI
  • Q2. Given a binary tree whose every node value is a number. find the sum of all the numbers that are formed from root to leaf paths
  • Ans. 

    Sum all numbers formed from root to leaf paths in a binary tree

    • Traverse the tree from root to leaf nodes, keeping track of the current number formed

    • Add the current number to the sum when reaching a leaf node

    • Recursively explore left and right subtrees

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Amdocs user image Anonymous

posted on 22 May 2024

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

It consisted of both technical programming and theoretical concepts. C++ and SQL

Round 2 - Technical 

(2 Questions)

  • Q1. Consisted of scenario based questions from technical domain.
  • Q2. Differentiate all sorting algorithms
  • Ans. 

    Sorting algorithms differ in their approach to sorting elements in an array.

    • Bubble Sort - compares adjacent elements and swaps them if they are in the wrong order

    • Merge Sort - divides the array into two halves, sorts them, and then merges them

    • Quick Sort - picks a pivot element and partitions the array around the pivot

    • Selection Sort - repeatedly selects the minimum element and swaps it with the current element

    • Insertion S...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Simple resume related non technical.

Skills evaluated in this interview

SDE Interview Questions & Answers

Adobe user image Anonymous

posted on 5 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

DSA,COMPUTER FUNDAMENTALS

Round 3 - One-on-one 

(1 Question)

  • Q1. TELL ABOUT TREE TRAVERSALS
  • Ans. 

    Tree traversals are methods used to visit each node in a tree data structure in a specific order.

    • Inorder traversal: Visit left subtree, then root, then right subtree

    • Preorder traversal: Visit root, then left subtree, then right subtree

    • Postorder traversal: Visit left subtree, then right subtree, then root

  • Answered by AI

Skills evaluated in this interview

Round 1 - Aptitude Test 

Go through the basics of all the topics the electronics part of the exam will be tough

Round 2 - One-on-one 

(1 Question)

  • Q1. Know each and everything about your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be kind to the interviwer and be polite be careful

SDE Interview Questions & Answers

Zoho user image HARI RAM

posted on 5 Apr 2024

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

I applied via Job Portal and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Puzzle based questions and Math problems

Round 2 - Coding Test 

Given a laptop and problem statement. Had to solve problems at eclipse.

Round 3 - Technical 

(1 Question)

  • Q1. F2F one on one technical interview

Oracle Interview FAQs

How many rounds are there in Oracle SDE interview?
Oracle interview process usually has 3-4 rounds. The most common rounds in the Oracle interview process are Resume Shortlist, Technical and Aptitude Test.
What are the top questions asked in Oracle SDE interview?

Some of the top questions asked at the Oracle SDE interview -

  1. left leaf nodes sum in a binary t...read more
  2. Leetcode- Rotten oranges mat...read more
  3. Leetcode- Climb stairs (medi...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Oracle interviews
Job Portal
Campus Placement
Referral
33%
33%
33%
1% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

SDE Interview Questions from Similar Companies

Amazon SDE Interview Questions
4.1
 • 44 Interviews
Google SDE Interview Questions
4.4
 • 15 Interviews
TCS SDE Interview Questions
3.7
 • 12 Interviews
Accenture SDE Interview Questions
3.9
 • 10 Interviews
IBM SDE Interview Questions
4.1
 • 2 Interviews
Adobe SDE Interview Questions
4.0
 • 2 Interviews
View all
Oracle SDE Salary
based on 11 salaries
₹11 L/yr - ₹28 L/yr
11% less than the average SDE Salary in India
View more details

Oracle SDE Reviews and Ratings

based on 2 reviews

2.3/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

3.7

Salary & Benefits

3.7

Job Security

3.7

Company culture

3.7

Promotions/Appraisal

3.7

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
2.3k salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹9 L/yr - ₹24.4 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 - ₹29 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.8
Compare

Salesforce

4.1
Compare

IBM

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview