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 Associate Software Developer Interview Questions and Answers

Updated 4 Dec 2024

Oracle Associate Software Developer Interview Experiences

4 interviews found

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic one along with os, dbms fundamentals

Round 2 - Coding Test 

One question can be solved using dp

Round 3 - Technical 

(2 Questions)

  • Q1. Identify the longest palindromic substring
  • Ans. 

    A palindromic substring is a string that reads the same forwards and backwards.

    • Use dynamic programming to find the longest palindromic substring.

    • Start by considering each character as the center of a potential palindrome.

    • Expand outwards from each center to check for palindromic property.

    • Keep track of the longest palindromic substring found so far.

    • Example: Input 'babad', Output 'bab' or 'aba'.

  • Answered by AI
  • Q2. Questions based on resume/projects

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Verbal, quants and logical reasoning. 160mins duration

Round 2 - Coding Test 

Dynamic programming questions on tree and linked lists

Interview Preparation Tips

Interview preparation tips for other job seekers - discuss the approach with the interviewer and improvise

Associate Software Developer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in Xoriant
Q2. Tell me some of the data types that are used in python?
asked in Xoriant
Q3. What are joins in SQL? Explain each with the real life example?
asked in Xoriant
Q4. How will you delete a file in python module using a python code?
asked in Accenture
Q5. What are some basic DBMS concepts, including joins and subqueries ... read more

I applied via LinkedIn and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

The online test consisted of 4 sections, Aptitude, logical reasoning, Computer Programming and English Comprehension.

Round 2 - Technical 

(1 Question)

  • Q1. Technical round where questions on core DBMS concepts were asked.

Interview Preparation Tips

Topics to prepare for Oracle Associate Software Developer interview:
  • Data Structures
  • OS
Interview preparation tips for other job seekers - Just focus on the core concepts and Data Structures.

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Questions related to DSA, Basic English, Operating System and DBMS

Round 2 - Coding Test 

2 Coding Questions related to trees and graphs

Round 3 - One-on-one 

(4 Questions)

  • Q1. What are the fundamentals of OOPS?
  • Ans. 

    OOPS fundamentals include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and providing simplified interfaces.

  • Answered by AI
  • Q2. What were your projects during college?
  • Q3. Some basic queries related to SQL.
  • Q4. Write down the code for LCA of a binary Tree.
  • Ans. 

    Code for finding the Lowest Common Ancestor (LCA) of a binary tree.

    • Start by checking if the root is null or equal to either of the given nodes. If so, return the root.

    • Recursively search for the LCA in the left and right subtrees.

    • If both nodes are found in different subtrees, return the root as the LCA.

    • If both nodes are found in the same subtree, continue searching in that subtree.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why do you want to join Oracle?
  • Q2. What makes you a suitable candidate for the job?

Interview Preparation Tips

Topics to prepare for Oracle Associate Software Developer interview:
  • DSA
Interview preparation tips for other job seekers - Be prepared well! Practice daily. Have a learning experience after each failure and try not to repeat it!

Skills evaluated in this interview

Oracle interview questions for designations

 Developer Associate

 (1)

 Software Developer

 (64)

 Associate Software Engineer

 (10)

 Associate Application Developer

 (1)

 Senior Software Developer

 (4)

 Software Developer Intern

 (2)

 Assistant Software Developer

 (1)

 Software Developer II

 (1)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was interview for AI role so most of the questions were about the same topics. The mathematics behind some models and they focused on my projects and research paper.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your projects and research papers in AI field is always an advantage.

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain about data scrapping,computer vision,agile methodologies,change request,testing methods
  • Ans. 

    Data scraping, computer vision, agile methodologies, change request, and testing methods are all important aspects of software engineering.

    • Data scraping involves extracting data from websites or other sources.

    • Computer vision involves using algorithms to interpret and analyze visual data.

    • Agile methodologies are a set of principles for software development that prioritize flexibility and collaboration.

    • Change requests are...

  • Answered by AI
  • Q2. Explain about project i worked in

Interview Preparation Tips

Interview preparation tips for other job seekers - interviewer was very friendly and i had good experience.2 technical rounds one client round and one HR round

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Java 8 features - Stream API, Functional interface (Predicate, Binary Operators, Function), Permgen V/s Metaspace, Date and Time API
  • Q2. Spring boot annotations - @SpringBootApplication, @RestController, @GetMapping, @PostMapping, @Service, @Repository
  • Q3. Coding Question 1 - Find sum of squares of numbers in list using stream API.
  • Ans. 

    Find sum of squares of numbers in list using stream API.

    • Use mapToInt() to convert list of integers to IntStream

    • Use map() to square each element of IntStream

    • Use sum() to get the sum of squares

  • Answered by AI
  • Q4. Coding Question 2 - Searching in 2D sorted array row wise and column wise.
  • Ans. 

    Searching in 2D sorted array row wise and column wise.

    • Start from the top right corner or bottom left corner

    • Compare the target with the current element

    • Move left or down if target is smaller or move right or up if target is larger

    • Repeat until target is found or out of bounds

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and also do lots of hands on coding.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Data Structures, Algorithms, System designing, Azure

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Spiral Order Traversal of a Binary Tree Problem Statement

    Given a binary tree with 'N' nodes, your task is to print the nodes in spiral order traversal.

    Example:

    Input:
    The binary tree is represented i...
  • Ans. 

    Print nodes of a binary tree in spiral order traversal.

    • Use a queue to perform level order traversal of the binary tree.

    • Alternate between printing nodes from left to right and right to left at each level.

    • Handle null nodes represented by '-1' appropriately.

    • Example: For input '1 2 3 -1 -1 4 5 -1 -1 -1 -1', the output should be '1 3 2 4 5'.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Word Break Problem Statement

    You are given a list of N strings called A. Your task is to determine whether you can form a given target string by combining one or more strings from A.

    The strings from A c...

  • Ans. 

    Given a list of strings, determine if a target string can be formed by combining one or more strings from the list.

    • Iterate through all possible combinations of strings from the list to form the target string.

    • Use recursion to try different combinations of strings.

    • Check if the current combination forms the target string.

    • Return true if a valid combination is found, otherwise return false.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Design an elevator system.
  • Ans. 

    Design an elevator system for efficient vertical transportation.

    • Divide building into zones to optimize elevator usage.

    • Implement algorithms for efficient elevator scheduling.

    • Include safety features like emergency stop buttons and overload sensors.

    • Consider user interface for passengers to select floors and monitor elevator status.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaNoMicrosoft interview preparation:Topics to prepare for the interview - Data structures, algorithms , low level system design , high level system design, problem solvingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Never give up
Tip 2 : Practice 
Tip 3 : Be positive

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Highlight skills and achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Why important in learning programming languages.
  • Ans. 

    Learning programming languages is important for software engineers to effectively communicate with computers and develop software solutions.

    • Programming languages are the foundation of software development.

    • Learning multiple languages expands the range of problems a software engineer can solve.

    • Different languages have different strengths and are suited for different tasks.

    • Knowing multiple languages improves adaptability ...

  • Answered by AI

Oracle Interview FAQs

How many rounds are there in Oracle Associate Software Developer interview?
Oracle interview process usually has 2-3 rounds. The most common rounds in the Oracle interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Oracle Associate Software Developer interview?

Some of the top questions asked at the Oracle Associate Software Developer interview -

  1. What are the fundamentals of OO...read more
  2. Write down the code for LCA of a binary Tr...read more
  3. Identify the longest palindromic substr...read more

Tell us how to improve this page.

Oracle Associate Software Developer Interview Process

based on 2 interviews

2 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
View more
Oracle Associate Software Developer Salary
based on 132 salaries
₹7.1 L/yr - ₹24 L/yr
187% more than the average Associate Software Developer Salary in India
View more details

Oracle Associate Software Developer Reviews and Ratings

based on 10 reviews

3.7/5

Rating in categories

3.1

Skill development

4.6

Work-life balance

3.4

Salary

4.3

Job security

4.0

Company culture

2.5

Promotions

3.9

Work satisfaction

Explore 10 Reviews and Ratings
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