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

Updated 17 Mar 2025

Top Oracle Application Developer Interview Questions and Answers for Freshers

  • Q1. Puzzle: – Two persons X and Y are sitting side by side with a coin in each’s hand. The game is to simultaneously flip the coin till anyone wins. Player X will win if he g ...read more
  • Q2. In a bag you have 20 black balls and 16 red balls.When you take out 2 black balls you take another white ball.If you take 2 white balls then you take out 1 black ball and ...read more
  • Q3. Design a website similar to bookmyshow.com for booking cinema tickets but it must be for a single location only which can have multiple theatres in it. In this he wanted ...read more
View all 18 questions

Oracle Application Developer Interview Experiences for Freshers

5 interviews found

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

I applied via Approached by Company and was interviewed in May 2023. 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 tips
Round 2 - HR 

(1 Question)

  • Q1. Basic Hr Questions
Round 3 - Technical 

(1 Question)

  • Q1. Question 1:- Two Sum Question 2:- Three Sum Question 3:- Anagram in String
Round 4 - Technical 

(3 Questions)

  • Q1. Largest element in window size K
  • Ans. 

    Find the largest element in a window of size K in an array.

    • Iterate through the array and maintain a deque to store the indices of elements in decreasing order.

    • Remove indices from the front of the deque that are outside the current window.

    • The front of the deque will always have the index of the largest element in the current window.

  • Answered by AI
  • Q2. Design Tic Tac Toe
  • Ans. 

    Design a Tic Tac Toe game

    • Create a 3x3 grid to represent the game board

    • Allow two players to take turns marking X and O on the grid

    • Check for win conditions after each move to determine the winner

    • Handle tie game if all spaces are filled without a winner

  • Answered by AI
  • Q3. Sql query using joins
  • Ans. 

    SQL query using joins

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
Round 5 - Technical 

(3 Questions)

  • Q1. Design circular doubly linked list with all operations.
  • Ans. 

    Circular doubly linked list is a data structure where each node has a reference to both the next and previous nodes, forming a circular loop.

    • Create a Node class with data, next, and prev pointers

    • Implement operations like insert, delete, search, and display

    • Ensure the last node's next pointer points to the first node and the first node's prev pointer points to the last node

  • Answered by AI
  • Q2. Discussion on past projects, toughest problem solved till now.
  • Q3. Different types of searching and sorting algo discussion.
  • Ans. 

    Searching and sorting algorithms are essential in programming for efficiently organizing and retrieving data.

    • Searching algorithms: linear search, binary search, depth-first search, breadth-first search

    • Sorting algorithms: bubble sort, selection sort, insertion sort, merge sort, quick sort

    • Examples: Searching for a specific item in a list, sorting a list of numbers in ascending order

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Applying, focus was to code problems in Java.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. General questions related to Oracle PLSQL

Application Developer Interview Questions Asked at Other Companies for Fresher

asked in Oracle
Q1. Puzzle: – Two persons X and Y are sitting side by side with a coi ... read more
asked in Oracle
Q2. In a bag you have 20 black balls and 16 red balls.When you take o ... read more
asked in Accenture
Q3. Difference between tmap & tjoin Types of connection Differenc ... read more
asked in Oracle
Q4. Design a website similar to bookmyshow.com for booking cinema tic ... read more
asked in Oracle
Q5. Provided a string a character and a count, you have to print the ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Two DSA Questions and one SQL Query
Time: 90 minutes
Platform: Hackerank

Round 2 - Technical 

(1 Question)

  • Q1. 1. OOPS Concept 2. 1 easy level DSA question 3. 1 SQL Query
Round 3 - Technical 

(1 Question)

  • Q1. 1. 2 Medium Level DSA Question 2. 1 SQL Query

Interview Preparation Tips

Topics to prepare for Oracle Application Developer interview:
  • DSA
  • OOPS
  • Operating Systems
  • SQL
Interview preparation tips for other job seekers - Keep Interview Interactive. Try to explain the DSA question from the root.

Interview Questionnaire 

10 Questions

  • Q1. Code :- A simple C program to reverse the words in a string , like if string is “Oracle @ App Dev”, then it should become “Dev App @ Oracle”
  • Q2. Puzzle: – Two persons X and Y are sitting side by side with a coin in each’s hand. The game is to simultaneously flip the coin till anyone wins. Player X will win if he gets a consecutive HEAD, TAIL howeve...
  • Q3. Some DBMS questions like normalization, joins and composite key
  • Q4. Code: – Given the value of a starting position and an ending position, you have to reach from start to end in a linear way, and you can move either to position immediate right to current position or two st...
  • Ans. 

    Print all possible paths from start to end in a linear way, moving either one or two steps right.

    • Use dynamic programming to solve the problem

    • Create a 2D array to store the number of paths to each position

    • Start from the end position and work backwards

    • At each position, calculate the number of paths by summing the number of paths from the next two positions

    • Print all the paths by backtracking from the start position

  • Answered by AI
  • Q5. You are provided a CSV (Comma Separated Values) in file like E1:12, E2:32 etc. You have to generate a tree with maximum height 3 only with the given values in the following manner : E is the root of tree h...
  • Q6. Provided a string a character and a count, you have to print the string after the specified character has occurred count number of times. Ex: String: “This is demo string” Character: ‘i’ Count: 3 Output: “...
  • Ans. 

    The program prints the substring after a specified character has occurred a certain number of times in a given string.

    • Iterate through the string to find the specified character.

    • Keep track of the count of occurrences of the character.

    • Once the count reaches the specified count, extract the substring after that position.

    • Handle corner cases such as when the character is not in the string or when it doesn't occur the specif

  • Answered by AI
  • Q7. Design a website similar to bookmyshow.com for booking cinema tickets but it must be for a single location only which can have multiple theatres in it. In this he wanted me to design a basic rough GUI, rel...
  • Ans. 

    Design a website similar to bookmyshow.com for booking cinema tickets for a single location with multiple theatres.

    • Design a user-friendly GUI with options for advance booking, user login, user registration, movie rating, and saving card details.

    • Create relevant database tables to store information about movies, theatres, bookings, user details, and card details.

    • Link the GUI to the database to enable data flow and retrie...

  • Answered by AI
  • Q8. Puzzle: Given 10 coins, arrange them such that we get 4 different rows each containing 4 coins
  • Q9. Puzzle: Gi1ven 4 coins, arrange then to make maximum numbers of triangle of the figure
  • Q10. In the end he asked Database Normalization and all the normal forms in detail

Interview Preparation Tips

Round: Test
Experience: Initially an online written round was conducted consisting of following sections:
1. General aptitude
2. Logical Reasoning
3. Technical (Basic C/C++ questions)
4. English
Overall time limit was nearly 2 hrs. It was an easy round.

Round: Test
Experience: Then after this a large number of students were selected for the next coding round, where we had just one problem to code and time limit was 30 minutes. Problems were randomly distributed, it’s just that coding interface was not that good so many fellow mates of mine faced problem getting the output to the console in the right manner.I got the following program:A number x supports a number (x+b) where b is the number of set bits in binary representation of x, like if x = 3 then x supports (3+2)=5 as 3 has 2 1’s in its binary representation. Now you are provided with an array of numbers you have to print SUPPORTED if number is supported by any number if not print BLEAK else if there is an invalid input print 0.After this round 77 students were selected for the interview rounds. A big panel of 9 members had arrived to conduct these interviews.

Round: HR Interview
Experience: This round went for like 45 minutes, the interviewer was really nice and was giving certain clues in between to guide me.

Round: Technical Interview
Experience: This was a long and scary round, it lasted for like 2 hours.

Round: HR Interview
Experience: The interviewer asked me about the previous codes that I had made in previous rounds. He was more concerned about the approach than code. Then he start questioning about the site I made in round 3 regarding how I will amend it if it has to go global to alltype of customers. Then there were some basic HR questions.
Finally 3 students were selected out of total 77 students including me.

College Name: NA

Skills evaluated in this interview

Oracle interview questions for designations

 Senior Application Developer

 (4)

 Application Developer 2

 (2)

 Associate Application Developer

 (1)

 Assistant Application Developer

 (1)

 Application Development Engineer

 (6)

 Principal Application Engineer

 (2)

 Application Support Engineer

 (1)

 Developer

 (2)

Interview Questionnaire 

12 Questions

  • Q1. Explain your internship project
  • Q2. Given a matrix.Write a code to print the transpose of the matrix
  • Ans. 

    The code prints the transpose of a given matrix.

    • Iterate through each row and column of the matrix.

    • Swap the elements at the current row and column with the elements at the current column and row.

    • Print the transposed matrix.

  • Answered by AI
  • Q3. Write code to find the middle element of a linked list
  • Ans. 

    Code to find the middle element of a linked list

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle element

    • If the linked list has even number of elements, return the second middle element

  • Answered by AI
  • Q4. Explain multitasking and multiprogramming
  • Ans. 

    Multitasking is the ability of an operating system to run multiple tasks concurrently while multiprogramming is the ability to run multiple programs concurrently.

    • Multitasking allows multiple tasks to run concurrently on a single processor system.

    • Multiprogramming allows multiple programs to run concurrently on a single processor system.

    • Multitasking is achieved through time-sharing, where the processor switches between t...

  • Answered by AI
  • Q5. How was the other two interviews.Explain your approach for all those questions
  • Q6. Write a code for inserting two numbers in a text file given n2>n1 and the next entry should not be overlapping like if first was 4,6 next can't be 5,7.the second n1 has to be greater than first n2
  • Ans. 

    The code inserts two numbers in a text file, ensuring that the second number is greater than the first and there is no overlap between entries.

    • Read the existing entries from the text file

    • Check if the new numbers satisfy the conditions

    • If conditions are met, insert the new numbers into the file

    • Otherwise, display an error message

  • Answered by AI
  • Q7. What are your plans for higher studies?
  • Q8. Asked about ppt.What you liked.If I have any questions
  • Q9. In a bag you have 20 black balls and 16 red balls.When you take out 2 black balls you take another white ball.If you take 2 white balls then you take out 1 black ball and if balls are of different color yo...
  • Q10. There are five glasses that are kept upside down.At a time you are bound to turn four glasses.Give minimum number of times in which you can turn back all the glasses so that now none among them are upside...
  • Q11. Why Oracle?If you could not qualify for other companies or Why you did not choose other companies?
  • Q12. Write a code to count the number of times '1' occurs from 1 to 999999
  • Ans. 

    Code to count the number of times '1' occurs from 1 to 999999

    • Loop through all numbers from 1 to 999999

    • Convert each number to a string and count the number of '1's in it

    • Add the count to a running total

    • Return the total count

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Every section had 3-4 subsections.Questions on coding skills were a bit tougher.Trees and Graphs were major topics here. Others were finding complexities,array representation of trees etc.Codes were written in c++.DBMS had normal theoretical questions and simple SQL queries. Software engineering had flow charts mainly with problem statement given and few boxes in the charts left to be filled by you from given options.Aptitude and verbal was easy
Tips: Although the questions were a bit tougher but hold your nerves.Try to give your best based upon whatever you have studied till date.Apply all your logics and you can solve it.Total 200 students took the test and they shortlisted around 60. So even if you do a bit better than others you have very good chance to get shortlisted for the next round.
Do well in aptitude section. They will be easy and will maximize your score.
Duration: 120 minutes

Round: Technical Interview
Experience: My internship project was a java framework for automation of unit testing and the interviewer took special interest in that.He gave ample time to think about the logic for codes. This round was not so tough.
Tips: Make sure that you know your projects thoroughly with all the pros and cons with all the future aspects.They were least interested in which language you are coding. Even if you get the logics correct and write the algorithms you were selected for the next round.

Round: Puzzle Interview
Experience: This round was a bit rougher. I couldn't answer one puzzle.The interviewer was adding more stress to environment. Even for your correct answer he was acting as if you have given a wrong answer. He was a man with no emotions. May be he was checking how far you can pretend to be confident.
Tips: Seeing his emotions I seriously felt that I am not going to get shortlisted for the next round although I had answered remaining questions perfectly.So don't get disheartened. Situation will be same for all.Be confident.Whatever you know express that confidently.

Round: Technical Interview
Experience: This round was not so tough.Although he asked me to write code in c.I asked him if I can write in java as I am more comfortable in java.He said I will be more than happy if you can write in English language and just give me flow chart considering all the constraints.
Tips: Even if you are not from CSE background,try to think logically. They were not seeing your coding skills rather they were more concerned with your logic and algorithms. They were giving ample time to think.

Round: HR Interview
Experience: HR was just formality. Normal questions were asked.

General Tips: Special suggestion for ECE students. Don't think that you can't beat CS student in technical interview. Know your projects. Have basic knowledge of Data structures, OS and DBMS.Even they don't expect us to be like CS guy but be sure that you can impress them with your logics.
Skills: Confidence, Puzzle Solving Capability, Basic Knowledge Of DBMS, Algorithmic Approach To Problem Solving, Operating Systems, Data Structures
College Name: NIT Raipur

Skills evaluated in this interview

Get interview-ready with Top Oracle Interview Questions

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Pretty easy questions.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    Find the K-th smallest element in an array of distinct integers.

    • Sort the array and return the element at index K-1.

    • Use a min-heap to find the K-th smallest element efficiently.

    • Implement quickselect algorithm for optimal performance.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

1 coding question

  • Q1. 

    IP Address Formation from String

    Given a string S consisting only of digits from 0 to 9, your task is to find all potential IP addresses that can be formed from S and list them in lexicographical order. I...

  • Ans. 

    Given a string of digits, find all potential valid IP addresses that can be formed from it.

    • Split the string into four parts and check if each part is a valid IP segment (0-255).

    • Use backtracking to generate all possible combinations of valid IP addresses.

    • Ensure that the IP address does not contain leading zeroes.

    • Return the valid IP addresses in lexicographical order.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Total Discussion on OS concepts

  • Q1. Can you explain the concepts related to memory management in operating systems?
  • Ans. 

    Memory management in operating systems involves allocation, deallocation, and optimization of memory usage.

    • Memory allocation: OS allocates memory to processes based on their requirements.

    • Memory deallocation: OS frees up memory when it is no longer needed by a process.

    • Memory optimization: OS optimizes memory usage through techniques like paging, segmentation, and virtual memory.

    • Examples: Paging in which memory is divide...

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Easy in office environment

  • Q1. 

    Find the Lone Set Bit

    Your task is to identify the position of the only '1' bit in the binary representation of a given non-negative integer N. The representation contains exactly one '1' and the rest are...

  • Ans. 

    Find the position of the lone '1' bit in the binary representation of a given non-negative integer.

    • Iterate through the bits of the integer to find the position of the lone '1'.

    • Use bitwise operations to check if there is exactly one '1' bit in the binary representation.

    • Return the position of the lone '1' or -1 if there isn't exactly one '1'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria7 CGPAMicrosoft interview preparation:Topics to prepare for the interview - Trees, graphs, dynamic programming, stacks, queuesTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Do a good project.
Tip 2 : Master the topics you are preparing.

Application resume tips for other job seekers

Tip 1 : Avoid writing things you do not know
Tip 2 : Follow a proper format for Resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of Jcl like class parameters, Questions from Sorting and disp parameters as well aa Gdg. In cobol variouws error codes and also db2 and Ims db questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the baaics of all like JCL, COBOL, DB2 & IMSDB. If u aware of CICS then it will be added advantage.

Interview Questionnaire 

1 Question

  • Q1. Basic oops,basic MFC

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

The test included MCQ questions from SQL, Linux Commands, C/C++ programming, Logical Reasoning, Aptitude
questions. The other section was the coding round, where 2 SQL queries and 2 coding questions were there.

  • Q1. 

    Pythagorean Triplets Detection

    Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.

    Input:

    The first lin...
  • Ans. 

    Detect if an array contains a Pythagorean triplet by checking if there are three integers x, y, and z such that x^2 + y^2 = z^2.

    • Iterate through all possible triplets of numbers in the array and check if they form a Pythagorean triplet.

    • Use a nested loop to generate all possible combinations of three numbers from the array.

    • Check if the sum of squares of any three numbers is equal to the square of another number.

    • Return 'y...

  • Answered by AI
  • Q2. 

    First Unique Character in a String Problem Statement

    Given a string STR consisting of lowercase English letters, identify the first non-repeating character in the string and return it. If no such characte...

  • Ans. 

    Identify the first non-repeating character in a string and return it, or '#' if none exists.

    • Iterate through the string to count the frequency of each character

    • Iterate through the string again to find the first character with frequency 1

    • Return the first non-repeating character or '#' if none exists

  • Answered by AI
Round 2 - Face to Face 

(5 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

This was a standard DSA round where I was asked to solve 2 questions and also code it in a production ready manner . After DS and Algo , I was asked some questions from OOPS and Java followed by some Unix Commands and basic concepts from Operating Systems.

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Time complexity can be optimized to O(N) using a set to store duplicates.

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q3. What are Serialization and Deserialization in Java?
  • Ans. 

    Serialization is the process of converting an object into a byte stream, while deserialization is the reverse process.

    • Serialization is used to persist object state or transmit objects over a network.

    • Deserialization reconstructs the object from the byte stream.

    • Java provides Serializable interface for serialization and ObjectInputStream/ObjectOutputStream classes for deserialization.

    • Example: Serializing an object to a fi

  • Answered by AI
  • Q4. Can you explain the Singleton Class in Java?
  • Ans. 

    Singleton class in Java ensures that a class has only one instance and provides a global point of access to it.

    • Singleton class restricts the instantiation of a class to one object.

    • It provides a way to access its unique instance globally.

    • Commonly implemented using a private constructor and a static method to return the instance.

    • Example: Logger class in a multi-threaded application.

  • Answered by AI
  • Q5. Can you explain piping in Unix/Linux?
  • Ans. 

    Piping in Unix/Linux allows the output of one command to be used as the input for another command.

    • Piping is done using the | symbol

    • It helps in connecting multiple commands together to perform complex operations

    • Example: ls -l | grep .txt - This command lists all files in long format and then filters out only the .txt files

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions .

  • Q1. What is something about you that is not included in your resume?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAmdocs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, 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

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: It consists of quant, reasoning, C/C++, Englisg and Unix.
Tips: Go through basics and practice well
Duration: 1:30 hrs minute
Total Questions: 60-70

Round: Technical Interview
Experience: Have thorough knowledge about your project.

Round: HR Interview
Experience: Just a casual talk like about your personal details, hobbies etc.

General Tips: Be confident.
Skills:
College Name: NIT Durgapur

Oracle Interview FAQs

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

Some of the top questions asked at the Oracle Application Developer interview for freshers -

  1. Puzzle: – Two persons X and Y are sitting side by side with a coin in each’...read more
  2. In a bag you have 20 black balls and 16 red balls.When you take out 2 black bal...read more
  3. Design a website similar to bookmyshow.com for booking cinema tickets but it mu...read more
How long is the Oracle Application Developer interview process?

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

Tell us how to improve this page.

Oracle Application Developer Interview Process for Freshers

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 843 Interviews
Amdocs Interview Questions
3.7
 • 518 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
SAP Interview Questions
4.2
 • 285 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
View all
Oracle Application Developer Salary
based on 719 salaries
₹6.7 L/yr - ₹22.4 L/yr
41% more than the average Application Developer Salary in India
View more details

Oracle Application Developer Reviews and Ratings

based on 83 reviews

3.6/5

Rating in categories

3.1

Skill development

4.0

Work-life balance

3.3

Salary

4.2

Job security

3.5

Company culture

2.6

Promotions

3.3

Work satisfaction

Explore 83 Reviews and Ratings
Applications Developer 4

Hyderabad / Secunderabad

8-10 Yrs

Not Disclosed

Applications Developer 4

Bangalore / Bengaluru

1-6 Yrs

₹ 6.78-12.9 LPA

Applications Developer

Hyderabad / Secunderabad

1-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
2.5k salaries
unlock blur

₹10.3 L/yr - ₹40 L/yr

Principal Consultant
2.1k salaries
unlock blur

₹10.9 L/yr - ₹37 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹9.1 L/yr - ₹25 L/yr

Senior Member of Technical Staff
1.8k salaries
unlock blur

₹12.1 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹9.7 L/yr - ₹30 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.8
Compare

Salesforce

4.0
Compare

IBM

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