i
Oracle
Filter interviews by
I applied via campus placement at Indian Institute of Technology (IIT), Roorkee and was interviewed before Jul 2023. There were 2 interview rounds.
Basic DSA questions on Strings and Tree
Shallow copy only copies the references of objects, while deep copy creates new copies of objects.
Shallow copy creates a new object but does not create copies of nested objects.
Deep copy creates new copies of all nested objects.
Shallow copy is faster and more memory efficient, but changes to nested objects affect both copies.
Deep copy is slower and uses more memory, but changes to nested objects do not affect the origi
I applied via Campus Placement and was interviewed before Aug 2023. There were 4 interview rounds.
Solve sudoku without using backtracking kr reccursion
A simple DSA ladder question , leetcode medium difficulty
JavaScript, oops, and a leetcode medium DSA question
I want to join Oracle because of their reputation for innovation and cutting-edge technology.
Opportunity to work with cutting-edge technology
Reputation for innovation and excellence
Potential for career growth and development
Strong company culture and values
I love the diverse culture, vibrant food scene, and endless opportunities for growth in this city.
Diverse culture with people from all over the world
Vibrant food scene with a wide range of cuisines to explore
Endless opportunities for personal and professional growth
I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.
Traversing a singly linked list involves iterating through each node starting from the head node.
Start at the head node
Iterate through each node by following the 'next' pointer
Stop when reaching the end of the list (next pointer is null)
I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.
The first round of the Application Developer interview involves a test with sections on Aptitude, Dbms, Java Core, and Os.
The test will likely assess your general problem-solving skills and knowledge of specific programming languages and systems.
Be prepared to answer questions about database management, Java programming, and operating systems.
Examples of questions might include writing code to solve a problem, identify...
Oracle interview questions for designations
I was interviewed in Jun 2021.
Round duration - 60 Minutes
Round difficulty - Medium
This was a proctured online coding test where we had 2 questions to solve under 60 minutes.
Given an array COORDINATES
representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points...
Given an integer array ARR
of size N
, your task is to find the total number of inversions that exist in the array.
An inversion is defined for a pair of integers in the...
Round duration - 60 Minutes
Round difficulty - Medium
This round had 1 question of DSA followed by some questions from DBMS and Java. I was also made to execute a SQL query at the end.
You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Lin...
Round duration - 60 Minutes
Round difficulty - Medium
This round had two preety straight forward questions related to DSA and then there were 2 puzzles.
You are provided with a matrix of characters, CHARACTER_MATRIX
of size M x N
, and a string WORD
. Your goal is to locate and display all occurrences of the string within the ...
You are tasked with finding the greatest common divisor (GCD) of two given numbers 'X' and 'Y'. The GCD is defined as the largest integer that divides both of the...
Round duration - 30 Minutes
Round difficulty - Easy
This was a typical HR round with some standard Behavioral questions.
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.
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.
Get interview-ready with Top Oracle Interview Questions
I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.
I applied via Recruitment Consulltant and was interviewed before Mar 2022. There were 3 interview rounds.
The test had 15 aptitude and 2 coding questions
I was interviewed before Jan 2021.
Round duration - 60 Minutes
Round difficulty - Medium
This was an online proctured coding test where we had 2 questions to solve under 60 minutes. The questions were of Easy to Medium level.
You are provided with a string EXP
which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.
An i...
Determine the length of the largest subarray within a given array of 0s and 1s, such that the subarray contains an equal number of 0s and 1s.
Input beg...
Round duration - 60 Minutes
Round difficulty - Medium
In this round, the interviewer asked me 2 questions related to DSA and then some questions from OS were asked to check basic understanding of the subject.
Given a string S
, your task is to return all distinct palindromic substrings of the given string in alphabetical order.
A string is considered a pal...
You are given a binary tree consisting of distinct integers and two nodes, X
and Y
. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...
Round duration - 60 Minutes
Round difficulty - Medium
This round had 2 questions from DSA which were followed by some core concepts from OOPS and Java.
You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.
...Your task is to sort an array of integers in non-decreasing order using the Heap Sort algorithm.
The first line contains an integer 'T' denoting the number of test cas...
Round duration - 30 Minutes
Round difficulty - Easy
This was a typical HR round with some standard Behavioral questions.
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.
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.
I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.
I was interviewed before Feb 2021.
Round duration - 60 Minutes
Round difficulty - Medium
This was a proctured online coding test where we had 2 questions to solve under 60 minutes. Both the questions were of Easy to Medium level of difficulty and can be solved if one has a decent command over Data Structures and Algorithms.
Given an array ARR
consisting of 'N' positive integers, determine if it is possible to partition the array into two subsets such that the sum of the elements in both sub...
Given an integer array ARR
of size N
, your task is to find the total number of subsequences in which all elements are equal.
A subsequence of an array i...
Round duration - 60 Minutes
Round difficulty - Medium
This round had 2 questions from DSA of Easy to Medium level in which I first had to explain my approach and then I had to code . After that, I was asked some questions from DBMS and SQL to check basic understanding of the subject.
Given 'K' different arrays that are individually sorted in ascending order, merge all these arrays into a single array that is also sorted in ascending order.
Given a list of integers pre[]
of size n
, representing the preorder traversal of a special binary tree where each node has 0 or 2 children, and a boolean array isLea...
Round duration - 60 Minutes
Round difficulty - Medium
This round also had 2 questions from DS and Algo where I had to first explain my approach and then write the pseudo code in Google Docs. This was followed by some questions from DBMS and SQL . I was also asked to execute a SQL query at the end.
You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...
Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.
The first line contains an...
Round duration - 30 Minutes
Round difficulty - Easy
This was a typical HR round with some standard Behavioral questions.
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.
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.
Top trending discussions
Some of the top questions asked at the Oracle Application Developer interview -
The duration of Oracle Application Developer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 27 interviews
5 Interview rounds
based on 80 reviews
Rating in categories
Senior Software Engineer
2.4k
salaries
| ₹10.2 L/yr - ₹40 L/yr |
Senior Consultant
2.1k
salaries
| ₹9.1 L/yr - ₹25 L/yr |
Principal Consultant
2k
salaries
| ₹14 L/yr - ₹36 L/yr |
Senior Member of Technical Staff
1.8k
salaries
| ₹12 L/yr - ₹45 L/yr |
Senior Application Engineer
1.4k
salaries
| ₹9.7 L/yr - ₹30 L/yr |
SAP
MongoDB
Salesforce
IBM