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

Updated 6 Jul 2024

Top Oracle Java Developer Interview Questions and Answers

View all 8 questions

Oracle Java Developer Interview Experiences

9 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java concepts based on streams and oops concepts and singleton class
  • Q2. DSA questions like first missing number and rotate array
Round 2 - One-on-one 

(2 Questions)

  • Q1. SQL queries based on group by and implementation of min heap
  • Q2. Scenario based question like what data structure are used
Round 3 - One-on-one 

(2 Questions)

  • Q1. Java based questions like difference between interface and abstract class and spring boot rest API implementation
  • Q2. Permutation of the number without duplicates
  • Ans. 

    Generate all permutations of a given number without duplicates

    • Use backtracking to generate all possible permutations

    • Avoid duplicates by keeping track of used digits

    • Recursively swap digits to generate permutations

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find the highest element from a BST and implement insertion operation of BST.
  • Ans. 

    To find the highest element in a BST, perform a right traversal until reaching the rightmost leaf node.

    • Perform a right traversal starting from the root node until reaching the rightmost leaf node to find the highest element.

    • Implement the insertion operation by comparing the value to be inserted with each node and traversing left or right accordingly.

    • Ensure that the BST property is maintained during insertion by placing...

  • Answered by AI
  • Q2. Heap Sort with Max Heap
  • Ans. 

    Heap Sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap Sort involves building a max heap from the input array, then repeatedly removing the maximum element and rebuilding the heap.

    • The time complexity of Heap Sort is O(n log n) in the worst case scenario.

    • Example: Given an array [4, 10, 3, 5, 1], after applying Heap Sort, the sorted array would be [1, 3, 4, 5, 10].

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Delete nth element from end in a LINKEDLIST.
  • Ans. 

    To delete the nth element from the end in a LinkedList, we can use two pointers approach.

    • Use two pointers - one to traverse the list and another to keep track of the nth element from the end.

    • Calculate the distance between the two pointers and delete the node at the second pointer.

  • Answered by AI
  • Q2. Reverse a LinkedLis
  • Ans. 

    To reverse a LinkedList, iterate through the list and change the direction of pointers.

    • Iterate through the LinkedList and keep track of the previous, current, and next nodes.

    • Update the pointers to reverse the direction of the nodes.

    • Repeat until the end of the list is reached.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Java Basics plus Data Structure

Skills evaluated in this interview

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 1You have been given an integer array/list(ARR) of size N ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in LTIMindtree
Q3. Longest Harmonious SubsequenceYou are given an array ‘ARR’ of 'N' ... read more
asked in Deloitte
Q4. Convert Bst To The Greater Sum TreeYou have been given a Binary S ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Java Developer Interview Questions & Answers

user image pooja mokale

posted on 6 Jul 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you explain a C student to use Java
  • Ans. 

    Explain the basics of Java in a simple and practical way, focusing on hands-on examples and real-world applications.

    • Start by explaining the basic syntax and structure of Java code

    • Use simple examples to demonstrate concepts like variables, loops, and functions

    • Show how Java is used in real-world applications, such as building websites or mobile apps

  • Answered by AI
  • Q2. What is memory management
  • Ans. 

    Memory management is the process of controlling and coordinating computer memory, assigning portions called blocks to various running programs.

    • Memory allocation - assigning memory blocks to programs as needed

    • Memory deallocation - releasing memory blocks when no longer needed

    • Memory fragmentation - the division of memory into small blocks leading to inefficient use

    • Memory leaks - when a program fails to release memory aft...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2023. 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 - One-on-one 

(2 Questions)

  • Q1. Leetcode 2sum,3sum,closest sum,merge 2 sorted linked lists Questions
  • Q2. Leetcode merge 2 sorted linkedlists
Round 3 - One-on-one 

(1 Question)

  • Q1. Detect cycle in directed graph
  • Ans. 

    Detect cycle in directed graph using depth-first search algorithm.

    • Use depth-first search (DFS) algorithm to traverse the graph.

    • Maintain a visited set to keep track of visited nodes.

    • If a node is visited again during traversal, there is a cycle in the graph.

  • Answered by AI

Skills evaluated in this interview

Oracle interview questions for designations

 Senior Java Developer

 (2)

 Fullstack Java Developer

 (1)

 Java Full Stack Developer

 (1)

 Developer

 (3)

 Software Developer

 (67)

 Application Developer

 (37)

 SQL Developer

 (6)

 Web Developer

 (2)

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on my resume. what is join? What is out of memory error? Can it be resolved after getting it? One programming question in java? Then some followup questions based on above?

Get interview-ready with Top Oracle Interview Questions

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Problem solving and basics

Round 2 - Technical 

(1 Question)

  • Q1. Dynamic Programming and array and DA

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Java Developer Jobs at Oracle

View all
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2023. There were 3 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 - Technical 

(1 Question)

  • Q1. My skills , introduction, hobbies
Round 3 - HR 

(1 Question)

  • Q1. Self study introduction , how much salary prepared

Java Developer interview

user image Drunken Engineer

posted on 24 Nov 2021

Java Developer interview

user image Sync Tech

posted on 24 Nov 2021

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Min stack write code with full operation
  • Ans. 

    A min stack is a stack data structure that supports the usual push and pop operations, along with an additional operation to retrieve the minimum element in constant time.

    • Create a stack to store the elements and another stack to store the minimum values encountered so far.

    • When pushing an element, check if it is smaller than the current minimum. If so, push it onto the minimum stack.

    • When popping an element, check if it ...

  • Answered by AI
  • Q2. Graph and sql ,concept problem
Round 2 - One-on-one 

(2 Questions)

  • Q1. Merge Sort based tricky ques
  • Q2. Island problem leetcode

Skills evaluated in this interview

Oracle Interview FAQs

How many rounds are there in Oracle Java Developer interview?
Oracle interview process usually has 2-3 rounds. The most common rounds in the Oracle interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Oracle Java 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, Microservices, J2Ee, Spring Boot and Javascript.
What are the top questions asked in Oracle Java Developer interview?

Some of the top questions asked at the Oracle Java Developer interview -

  1. Find the highest element from a BST and implement insertion operation of B...read more
  2. How do you explain a C student to use J...read more
  3. Permutation of the number without duplica...read more
How long is the Oracle Java Developer interview process?

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

Tell us how to improve this page.

Oracle Java Developer Interview Process

based on 5 interviews in last 1 year

1 Interview rounds

  • One-on-one Round
View more

People are getting interviews through

based on 6 Oracle interviews
Job Portal
Company Website
67%
17%
16% 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
Oracle Java Developer Salary
based on 75 salaries
₹3.8 L/yr - ₹15 L/yr
58% more than the average Java Developer Salary in India
View more details

Oracle Java Developer Reviews and Ratings

based on 7 reviews

4.6/5

Rating in categories

4.2

Skill development

4.5

Work-Life balance

3.9

Salary & Benefits

4.1

Job Security

4.3

Company culture

4.0

Promotions/Appraisal

4.2

Work Satisfaction

Explore 7 Reviews and Ratings
Java Developer (3 To 7 years)

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Java Developer

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Explore more jobs
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