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 Interview Questions, Process, and Tips for Experienced

Updated 31 Jan 2025

Top Oracle Interview Questions and Answers for Experienced

View all 156 questions

Oracle Interview Experiences for Experienced

Popular Designations

314 interviews found

Software Developer Interview Questions & Answers

user image Jafar Sadiq Shaik

posted on 29 Dec 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Linux Boot process(a MUST question in all rounds)
  • Q2. Linux filesystem, memory&process management
  • Q3. Dynamic memory allocation in C
  • Ans. 

    Dynamic memory allocation in C allows for allocating memory at runtime, enabling flexibility in memory usage.

    • Use functions like malloc(), calloc(), and realloc() to allocate memory dynamically.

    • Remember to free the allocated memory using free() to avoid memory leaks.

    • Dynamic memory allocation is commonly used for creating arrays or structures of unknown size.

    • Example: int *ptr = (int*)malloc(5 * sizeof(int));

  • Answered by AI
  • Q4. Linux bash script to rename files
  • Ans. 

    Use 'mv' command in a bash script to rename files in Linux.

    • Use 'mv' command followed by the current file name and the new file name to rename files.

    • You can use wildcards like '*' to rename multiple files at once.

    • Make sure to test the script on a few files before running it on all files.

  • Answered by AI
  • Q5. Linux system calls with an example
  • Ans. 

    Linux system calls are functions provided by the kernel for user-space programs to interact with the operating system.

    • System calls are used to request services from the kernel, such as creating processes, opening files, and networking.

    • Examples of system calls include open(), read(), write(), fork(), exec(), and socket().

    • System calls are invoked using a software interrupt or trap instruction, switching the CPU from user...

  • Answered by AI
  • Q6. More miscellaneous questions in Linux and C
Round 2 - Technical 

(1 Question)

  • Q1. Miscellaneous questions in Linux and Python
Round 3 - Technical 

(1 Question)

  • Q1. Miscellaneous questions more Deeper into Linux and C

Interview Preparation Tips

Interview preparation tips for other job seekers - 20% based on resume, 20% Python, 60% Linux(core topics+userspace topics)

Top Oracle Software Developer Interview Questions and Answers

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Lead Technical Analyst 1 Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2024

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. ODI, DWH and PL SQL advanced topics
Round 2 - Coding Test 

ODI and PL SQL scenario based end to end implementation

Round 3 - Behavioral 

(1 Question)

  • Q1. Previous experience and work related and future prospects discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical clarity of concepts and strong hands on practice

Cloud Operations Engineer Interview Questions & Answers

user image Kishor Shivaji Gajakosh

posted on 10 Jun 2024

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

I applied via Referral and was interviewed in Dec 2023. There were 6 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Linux day to day operations and shell scripting assignment
  • Q2. Write a bash script to make pyramid
  • Ans. 

    Bash script to create a pyramid pattern

    • Use nested loops to print spaces and stars in a pyramid shape

    • Incrementally increase the number of stars in each row

    • Calculate the number of spaces needed for each row based on the total number of rows and current row number

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. On bash scripting
Round 3 - Technical 

(1 Question)

  • Q1. Linux regex and bash scripting
Round 4 - Technical 

(1 Question)

  • Q1. Linux commands and bash scripting
Round 5 - Technical 

(1 Question)

  • Q1. Linux commands and bash scripting
Round 6 - Case Study 

Given scenario and did ask for my suggestions to get it resolved

Interview Preparation Tips

Interview preparation tips for other job seekers - The work is totally depends on Linux troubleshooting and shell scripting

Skills evaluated in this interview

Cloud Operations Engineer Interview Questions asked at other Companies

Q1. How do you give access to users via az portal
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Interview 

(1 Question)

  • Q1. Interviewer divided questions to Manual testing, Agile, Automation. Not asked to share my screen and asked lot of questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Java coding questions and Selenium related too Not too difficult as I kept 2 years experienced. It is more to test my Logical thinking for a problem.
  • Q2. Pallindrome, largest of an array, if else block related coding question, selenium real time scenario
Round 3 - Technical 

(1 Question)

  • Q1. Not yet conducted. In 2 days I am going to attend

Interview Preparation Tips

Topics to prepare for Oracle Selenium Automation Tester interview:
  • Core Java
  • Selenium

Selenium Automation Tester Interview Questions asked at other Companies

Q1. How to get the count of all text box in a web page?
View answer (6)

Oracle interview questions for popular designations

 Software Developer

 (67)

 Application Developer

 (37)

 Software Engineer

 (37)

 Senior Software Engineer

 (32)

 Member Technical Staff

 (24)

 Applications Engineer

 (23)

 Senior Consultant

 (18)

 Associate Consultant

 (17)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Question was asked on Dynamic WebTables , related to Automation testing

Round 2 - Technical 

(2 Questions)

  • Q1. All concepts of Java
  • Q2. OOPS concept with examples
  • Ans. 

    OOPS concept refers to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: Parent class 'Animal' and child class 'Dog'.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class 'Car' with private variables like 'speed' and methods like '...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Date of Joining. package compensation

Senior Sdet Engineer Interview Questions asked at other Companies

Q1. Optimize an existing system. The system currently makes an API call and stores data in its memory. When it tries to serve a request from another component it refers to the memory location by searching the entire memory.
View answer (1)

Get interview-ready with Top Oracle Interview Questions

Lead analyst Collection JAPAC Interview Questions & Answers

user image Anonymous

posted on 9 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. HR question - Basic
  • Q2. Technical - This is entirely your knowledge in previous company experience and work

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent company go for it

Jobs at Oracle

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

(1 Question)

  • Q1. General Tech round
Round 2 - One-on-one 

(1 Question)

  • Q1. Leecode Hard Problem
  • Ans. 

    Leetcode Hard Problem - Find the answer to a challenging coding problem.

    • Understand the problem statement thoroughly before attempting to solve it.

    • Break down the problem into smaller subproblems if possible.

    • Consider different approaches and analyze their time and space complexity.

    • Test your solution with different test cases to ensure correctness.

  • Answered by AI

Skills evaluated in this interview

Software Engineer IV Interview Questions asked at other Companies

Q1. How tcp/ip works and explain about tcp header
View answer (1)

SQL and PL SQL Developer interview

user image Siva Academy

posted on 24 Nov 2021

System Engineer Interview Questions & Answers

user image ANKIT KUMAR

posted on 10 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Linux booting process
  • Q2. DHCP process

Top Oracle System Engineer Interview Questions and Answers

Q1. find a word in 2 d matrix , palindrome or not
View answer (1)

System Engineer Interview Questions asked at other Companies

Q1. Who Won the Election???Elections are going on, and there are two candidates A and B, contesting with each other. There is a queue of voters and in this queue, some of them are supporters of A and some of them are supporters of B. Many of th... read more
View answer (11)

SMTS Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2024

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

Coding round in python

Round 2 - Technical 

(3 Questions)

  • Q1. Behavioural and system design
  • Q2. Design pagination
  • Q3. Design system migration
Round 3 - One-on-one 

(1 Question)

  • Q1. Hrining manager round

Interview Preparation Tips

Interview preparation tips for other job seekers - coding and sql round

Oracle Interview FAQs

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

Some of the top questions asked at the Oracle interview for experienced candidates -

  1. 1. Write a program to remove duplicate elements from String and mention the cou...read more
  2. 4. What is marker interface? Example of marker interface. Why it is us...read more
  3. 2. Write a program to capitalise all the first letter of a word in a senten...read more
How long is the Oracle interview process?

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

Tell us how to improve this page.

Oracle Interview Process for Experienced

based on 156 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Google Interview Questions
4.4
 • 871 Interviews
Cisco Interview Questions
4.1
 • 396 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Salesforce Interview Questions
4.0
 • 272 Interviews
Adobe Interview Questions
3.9
 • 250 Interviews
View all

Oracle Reviews and Ratings

based on 5.2k reviews

3.7/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.1

Salary

3.9

Job security

3.7

Company culture

2.6

Promotions

3.4

Work satisfaction

Explore 5.2k Reviews and Ratings
Java Developer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

2-4 Yrs

₹ 5-12 LPA

Senior Java Developer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

6-9 Yrs

₹ 14.4-33 LPA

Program Manager

Bangalore / Bengaluru

5-10 Yrs

₹ 6-19.15 LPA

Explore more jobs
Senior Software Engineer
2.4k salaries
unlock blur

₹10.2 L/yr - ₹40 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹9 L/yr - ₹25 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.5 L/yr - ₹34 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.8
Compare

Salesforce

4.1
Compare

IBM

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