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 Software Engineer II Interview Questions and Answers

Updated 19 Aug 2022

Oracle Software Engineer II Interview Experiences

2 interviews found

I applied via LinkedIn and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Array String Stack based problem solving
Round 2 - Technical 

(1 Question)

  • Q1. Basic DS Algo questions on Array, Queues, Stacks, and Recusrion. Difficulty should be easy to medium. Basic OOPs language questions.
Round 3 - Technical 

(1 Question)

  • Q1. Basic OOPs question, SQL queries, and in depth microservices design architecture. Difficulty easy to medium.
Round 4 - Behavioral 

(1 Question)

  • Q1. Basic questions and project overview, and then salary discussion.

Interview Preparation Tips

Topics to prepare for Oracle Software Engineer II interview:
  • Data Structures
  • Algorithms
  • OOPS
Interview preparation tips for other job seekers - The above interview process was for Non-OCI teams and that too for backend developer. This cannot be considered as preparation for OCI teams. Nothing was outside of resume.

Interview Questionnaire 

2 Questions

  • Q1. LinkedIn system design
  • Q2. Questions about python dictionaries and lists

Software Engineer II Interview Questions Asked at Other Companies

Q1. There are fifteen horses and a racing track that can run five hor ... read more
Q2. Title: Minimum steps required to make the product of array equal ... read more
asked in NCR Voyix
Q3. What are interfaces and what is difference between an interface a ... read more
Q4. Title: Next Greater Element for every element in the array Descri ... read more
Q5. What is the difference between C++ and Objective C and where will ... read more

Interview questions from similar companies

Round 1 - Aptitude Test 

It was easy

Round 2 - Technical 

(2 Questions)

  • Q1. Nice question based on core java
  • Q2. Opps, new keyword, immutable class, exception
Round 3 - HR 

(3 Questions)

  • Q1. What is your family background?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
Round 4 - HR 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Strengths and weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice work, nice one to one, nice to know about company is good

I applied via LinkedIn and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. System Design of Car Parking.
  • Ans. 

    Design a system for managing car parking.

    • Determine the size and layout of the parking lot.

    • Decide on the type of parking system (e.g. self-parking, valet).

    • Implement a ticketing system for tracking cars and payments.

    • Use sensors or cameras to monitor parking spaces.

    • Integrate with a payment gateway for online payments.

    • Provide real-time information on available parking spaces.

    • Consider implementing a loyalty program for freq

  • Answered by AI
  • Q2. System Design of Elevator
  • Ans. 

    Designing a system for an elevator

    • Identify the requirements and constraints

    • Determine the number of floors and elevators needed

    • Choose the elevator algorithm (e.g. FCFS, SCAN, LOOK)

    • Design the elevator controller

    • Consider safety features (e.g. emergency stop, overload protection)

    • Include user interface (e.g. buttons, displays)

    • Consider maintenance and repair

    • Test and optimize the system

  • Answered by AI
  • Q3. System Design of Photo-sharing App.
  • Ans. 

    A photo-sharing app system design

    • Use a scalable architecture to handle large amounts of data

    • Implement a secure authentication and authorization system

    • Utilize a content delivery network (CDN) for fast image loading

    • Allow users to tag and categorize photos for easy search and discovery

    • Implement a notification system for likes, comments, and new followers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For SDE2 only first interview round was coding round, other three interview rounds were of system design.
Be confident about your design.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Basic data structures.
  • Q2. Array , Linked list, Java
  • Q3. MCQ
  • Q4. Java
  • Q5. Analytical
  • Q6. Data Structure and Problem solving
  • Q7. Managerial

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true with you resume.
Don't add any skill which you are not aware of.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on react , majorly focus on basics

Round 2 - Technical 

(1 Question)

  • Q1. Question on coding react
Round 3 - Technical 

(1 Question)

  • Q1. Machine coding round
Round 4 - HR 

(1 Question)

  • Q1. Cultural fit questions

I was interviewed in Feb 2022.

Round 1 - Aptitude Test 

Simple apti questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Ooops concepts and SQL basics
  • Q2. One general question
Round 3 - One-on-one 

(1 Question)

  • Q1. Coding type and your project details
  • Ans. 

    I have experience in coding various types of software projects.

    • I have worked on web development projects using HTML, CSS, and JavaScript.

    • I have also developed mobile applications using Java and Kotlin.

    • I have experience in backend development using Python and Node.js.

    • I have worked on database management using SQL and MongoDB.

    • I have implemented algorithms and data structures in C++ and Java.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. He just invites to you into the organisation and congratulate you

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn ooops and SQL and you have to be good in basics of any programming language

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 Minutes
Round difficulty - Medium

This was an online coding round where we had 2 questions to solve under 75 minutes. The questions were of Medium to Hard level of difficulty and I found the problem statements to be a bit tricky.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Approach : 

    1) First make a recursive function, say ‘solve’ taking the number of opening brackets ‘opening’, number of closing brackets ‘closing’ output string ‘output’, and an array of strings ‘ans’ as arguments.

    2) Make the base condition as if ‘opening’ = 0 and ‘closing’ = 0 then push the output string in the ‘ans’ and return.

    3) If ‘opening’ is not equal to zero then call the ‘solve’ function recursively by decre...

  • Answered Anonymously
  • Q2. 

    Longest Happy String Problem Statement

    Given three non-negative integers X, Y, and Z, determine the longest happy string. A happy string is defined as a string that contains only the letters 'a', 'b', and...

  • Ans. 

    Approach : 

    1) Let the 'X', 'Y', 'Z' be the maximum availability ‘a’, ‘b’, ‘c’ respectively.

    2) Declare an empty string say ‘S’ to store the answer string.

    3) Run a loop till (x + y + z)
    3.1) If ( 'X' >= 'Y' and 'X' >= 'Z' and the last two letters in ‘S’ is not “aa” ) or ( the last two letters in ‘S’ are “bb” or “cc” and 'X' is nonzero).
    Add ‘a’ to ‘S’, and update 'X' to ‘x - 1’.

    3.2) If ( 'Y' >= 'X' and 'Y' &g...

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 preety decent questions of DSA . The interviewer was also quite freindly and helpful. I was able to solve both the questions under the given time frame and also discussed their respective time and space complexites.

  • Q1. 

    Problem Description

    Given a graph with 'N' nodes and 'M' unidirectional edges, along with two integers 'S' and 'D' representing the source and destination respectively, your task is to find all possible p...

  • Ans. 

    Approach (Using Backtracking) : 

    Let ‘allAllPaths(n, m, edges, src, des)’ be the function that returns a 2D array that contains all the possible paths.

    1) Take the following variables: 2D array ‘Graph’, to store graphs and ‘Visited’ array to mark each node whether it is visited or not.

    2) Clear graph, initialize the visited array to false.

    3) Run a loop from 0 to 'm' :
    3.1) Add the undirected edge between edges[i] [0] ...

  • Answered Anonymously
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Approach : 

    1) Initialize slow and fast at the beginning.

    2) Start moving slow to every next node and moving fast 2 jumps, while making sure that fast and its next is not null.

    3) If after adjusting slow and fast, if they are referring to the same node, there is a cycle otherwise repeat the process

    4) If fast reaches the end or null then the execution stops and we can conclude that no cycle exists.


    TC : O(N), where N =

  • Answered Anonymously
Round 3 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 question related to BST followed by some standard questions from OOPS and Operating Systems.

  • Q1. 

    Pair with Given Sum in a Balanced BST Problem Statement

    You are given the ‘root’ of a Balanced Binary Search Tree and an integer ‘target’. Your task is to determine if there exists any pair of nodes such ...

  • Ans. 

    Approach : 

    1) Maintain a hash-map ‘mp,’ which keeps track of the nodes we have visited.

    2) We will use a helper function, ‘helper’.

    3) ‘helper’ takes ‘root,’ ‘target,’ and ‘mp’ as input parameters, where ‘root’ is the root of the binary tree, ‘target’ is the value which should be equal to sum of 2 nodes and ‘mp’ is the hash-map we use to keep track of nodes visited.

    3.1) For a given root ‘toFind’ value is the other h...

  • Answered Anonymously
  • Q2. What is the difference between Early Binding and Late Binding in C++?
  • Ans. 

    OOP is used commonly for software development. One major pillar of OOP is polymorphism. Early Binding and Late
    Binding are related to that. Early Binding occurs at compile time while Late Binding occurs at runtime. In method
    overloading, the bonding happens using the early binding. In method overriding, the bonding happens using the late
    binding. The difference between Early and Late Binding is that Early Binding uses the...

  • Answered Anonymously
  • Q3. What is meant by multitasking and multithreading in operating systems?
  • Ans. 

    Multitasking : It refers to the process in which a CPU happens to execute multiple tasks at any given time. CPU
    switching occurs very often when multitasking between various tasks. This way, the users get to collaborate with
    every program together at the same time. Since it involves rapid CPU switching, it requires some time. It is because
    switching from one user to another might need some resources. The processes in mult...

  • Answered Anonymously
Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to point
and professional. The interview lasted for 30 minutes.

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

    If you get this question, it's an opportunity to choose the most compelling information to share that is not obvious from
    your resume.

    Example :

    Strength -> I believe that my greatest strength is the ability to solve problems quickly and efficiently, which makes me
    unique from others.

    Ability to Handle Pressure -> I enjoy working under pressure because I believe it helps me grow and become more
    efficient .


    Tip : Emphasi...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASalesforce 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 was interviewed in Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    String Compression Problem Statement

    Implement a program that performs basic string compression. When a character is consecutively repeated more than once, replace the consecutive duplicates with the coun...

  • Ans. Frequency Calculation Approach

    The steps are as follows:

     

    1. Keep two indices, both starting from the initial character. Let’s say, ‘STARTINDEX’ and ‘ENDINDEX’. These indices are going to tell the start and end of the substring where the characters are the same.
    2. Start moving the ‘ENDINDEX’ to every character till the character at ‘STARTINDEX’ is a match.
    3. Whenever there is a mismatch, we can calculate the frequency of the...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

This was my first technical round. he asked me about all my projects and the technologies used. some questions were on c and c++. what is heap , stack, memory allocation methods. Basically they covered all the concepts of c from string to pointers. Then they gave me one coding question which was on arrays. Best part was interviewers were very friendly.

  • Q1. 

    Jumping Numbers Problem Statement

    Given a positive integer N, your task is to find and display all jumping numbers that are less than or equal to N.

    A number is termed a jumping number if every adjacent ...

  • Ans. Brute Force
    • A brute force approach could be to iterate over all the integers from 0 to N.
    • For each integer check if its adjacent digits differ by 1. If yes, then the number is a jumping number.

     

    The steps are as follows:

     

    • Iterate over the integers, 0 to ‘N’.
    • For each integer, iterate over its digits.
      • Check if the current digit and the previous digit differ by 1.
    • If all the adjacent digits in the current integer diff...
  • Answered Anonymously
Round 3 - Video Call 

Round duration - 75 minutes
Round difficulty - Hard

This round was completely on data structures . he asked me all the questions related to linked list like detect a loop, remove a loop and graphs like BFS and DFS algorithms and some on trees. even on Adjacency matrix and adjacency list.

Round 4 - HR 

Round duration - 60 minutes
Round difficulty - Medium

Interview Preparation Tips

Eligibility criteria8Red Hat interview preparation:Topics to prepare for the interview - Data structure, algorithms, C, C++, computer networks, operating systemTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice coding daily
Tip 2 : Learn new concepts everyday
Tip 3 : Know all that standard coding questions

Application resume tips for other job seekers

Tip 1 : Do not bluff on ur resume.
Tip 2 : Keep relevant projects.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. Different Datatypes in python
  • Ans. 

    Python has several built-in datatypes including int, float, bool, str, list, tuple, set, and dict.

    • int - represents integers

    • float - represents floating-point numbers

    • bool - represents boolean values True and False

    • str - represents strings

    • list - represents ordered sequences of values

    • tuple - represents ordered, immutable sequences of values

    • set - represents unordered collections of unique values

    • dict - represents unordered co

  • Answered by AI
  • Q2. Difference between flask and Django
  • Ans. 

    Flask is a micro web framework while Django is a full-stack web framework.

    • Flask is lightweight and flexible, allowing developers to choose their own libraries and tools.

    • Django is a batteries-included framework with built-in ORM, admin interface, and authentication system.

    • Flask is ideal for small to medium-sized projects, while Django is better suited for larger, more complex projects.

    • Flask has a smaller learning curve ...

  • Answered by AI
  • Q3. Where would you use flask and where would you use django
  • Ans. 

    Flask is lightweight and good for small projects, while Django is more robust and suitable for larger projects.

    • Flask is good for small projects with simple requirements

    • Django is more suitable for larger projects with complex requirements

    • Flask is lightweight and flexible, allowing for more customization

    • Django has a lot of built-in features and is more opinionated

    • Flask is better for RESTful APIs and microservices

    • Django i...

  • Answered by AI
  • Q4. What are decorators
  • Ans. 

    Decorators are functions that modify the behavior of other functions or classes without changing their source code.

    • Decorators are denoted by the @ symbol in Python.

    • They can be used to add functionality to a function or class, such as logging or timing.

    • Decorators can also be used to modify the behavior of a function or class, such as adding caching or memoization.

    • Decorators can be chained together to apply multiple modi

  • Answered by AI
  • Q5. What are generators
  • Ans. 

    Generators are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generators use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • Generators are memory efficient as they only generate values when needed.

    • They are commonly used in data processing and asynchronous programming.

  • Answered by AI
  • Q6. Difference between range and xrange
  • Ans. 

    range and xrange are used to generate a sequence of numbers in Python.

    • range returns a list of numbers while xrange returns an iterator object.

    • range is memory-intensive while xrange is memory-efficient.

    • range is used in Python 3 while xrange is used in Python 2.

    • range can take three arguments: start, stop, and step while xrange can take two arguments: start and stop.

  • Answered by AI
  • Q7. Few programming que on list comprehension, map, filter and reduce
  • Q8. Rest APIs method

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with core Python

Skills evaluated in this interview

Oracle Interview FAQs

How many rounds are there in Oracle Software Engineer II interview?
Oracle interview process usually has 4 rounds. The most common rounds in the Oracle interview process are Technical and Behavioral.
How to prepare for Oracle Software Engineer II 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 Big Data, Hadoop, Java, SQL and Spark.
What are the top questions asked in Oracle Software Engineer II interview?

Some of the top questions asked at the Oracle Software Engineer II interview -

  1. Basic DS Algo questions on Array, Queues, Stacks, and Recusrion. Difficulty sho...read more
  2. Basic OOPs question, SQL queries, and in depth microservices design architectur...read more
  3. Basic Array String Stack based problem solv...read more

Tell us how to improve this page.

Oracle Software Engineer II Salary
based on 32 salaries
₹11.5 L/yr - ₹23 L/yr
6% more than the average Software Engineer II Salary in India
View more details

Oracle Software Engineer II Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.4

Skill development

4.4

Work-life balance

3.4

Salary

4.0

Job security

4.0

Company culture

3.4

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
2.3k 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

₹13.5 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹8.5 L/yr - ₹34 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