Upload Button Icon Add office photos

Filter interviews by

Oracle Financial Services Software Senior Developer Interview Questions and Answers

Updated 12 Dec 2024

Oracle Financial Services Software Senior Developer Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

Java questions along with SQL

Round 2 - Coding Test 

Java, SQL, Framework, Spring

Round 3 - One-on-one 

(5 Questions)

  • Q1. Managerial Round final round
  • Q2. Why do you want to change job
  • Ans. 

    I am seeking new challenges and opportunities for growth in a different environment.

    • Looking for new challenges to continue learning and growing

    • Interested in exploring different technologies and methodologies

    • Seeking a more collaborative team environment

    • Wanting to take on more leadership responsibilities

  • Answered by AI
  • Q3. Why were you for only 1.5 years in your last org
  • Ans. 

    I left my last organization after 1.5 years due to limited growth opportunities and desire for new challenges.

    • Limited growth opportunities in current role

    • Desire for new challenges and learning experiences

    • Seeking a more dynamic work environment

  • Answered by AI
  • Q4. What are your technical and domain expertise
  • Ans. 

    I have over 10 years of experience in software development with expertise in Java, Spring framework, and cloud technologies.

    • Proficient in Java programming language

    • Strong knowledge of Spring framework for building enterprise applications

    • Experience with cloud technologies such as AWS and Azure

    • Familiarity with Agile methodologies and DevOps practices

  • Answered by AI
  • Q5. What do you expect in your new job
  • Ans. 

    I expect a challenging role where I can utilize my skills to contribute to the team's success and continue to grow professionally.

    • Opportunity to work on complex projects

    • Collaborative team environment

    • Professional growth and learning opportunities

    • Clear expectations and goals set by management

  • Answered by AI

Interview questions from similar companies

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

Data structure and algorithms

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

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write tree structure iterations with shortest path
  • Ans. 

    Iterate through a tree structure and find the shortest path

    • Use a depth-first or breadth-first search algorithm to traverse the tree

    • Keep track of the current path while traversing

    • Compare the length of each path to find the shortest one

    • Consider using a priority queue or a min-heap to optimize the search

  • Answered by AI
  • Q2. Longest palindrome
  • Ans. 

    Find the longest palindrome in an array of strings.

    • Iterate through each string in the array

    • For each string, check if it is a palindrome

    • Keep track of the longest palindrome found so far

    • Return the longest palindrome

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program code for binary search
  • Ans. 

    Binary search program code in Python

    • Define a function that takes a sorted array and a target value as input

    • Initialize two pointers, low and high, to the start and end of the array

    • While low is less than or equal to high, calculate mid as (low + high) // 2 and compare array[mid] with target

    • If array[mid] is equal to target, return mid

    • If array[mid] is less than target, update low to mid + 1

    • If array[mid] is greater than tar...

  • Answered by AI
  • Q2. C++ constructors

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare coding

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Calculator code of addition substraction and multiplication

Round 3 - Coding Test 

CODING TEST OF how to add 2 numbers

Round 4 - Coding Test 

Coding test of how to use loops

Round 5 - HR 

(1 Question)

  • Q1. Whats your salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - good , try hard
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic Questions, Data types, Promises
  • Q2. Event loop, and other js concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour , dsa, hackerearth, medim to hard

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question was asked in it
  • Q2. Questions related to resume was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - study
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 hours of duration and medium level leetcode questions

Round 2 - Technical 

(2 Questions)

  • Q1. What do you mean by os?
  • Ans. 

    OS stands for Operating System. It is a software that manages computer hardware and provides services for computer programs.

    • OS is the software that acts as an intermediary between computer hardware and user applications.

    • It manages computer resources such as memory, processors, devices, and file systems.

    • Examples of popular operating systems include Windows, macOS, Linux, and Android.

  • Answered by AI
  • Q2. How can deadlock be avoided?
  • Ans. 

    Deadlock can be avoided by implementing proper resource allocation strategies and using techniques like deadlock prevention, avoidance, detection, and recovery.

    • Implement proper resource allocation strategies such as resource ordering, wait-die, wound-wait, etc.

    • Use techniques like deadlock prevention by ensuring that the system never enters a deadlock state, avoidance by ensuring that the system does not enter an unsafe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering.

Skills evaluated in this interview

Oracle Financial Services Software Interview FAQs

How many rounds are there in Oracle Financial Services Software Senior Developer interview?
Oracle Financial Services Software interview process usually has 3 rounds. The most common rounds in the Oracle Financial Services Software interview process are Coding Test and One-on-one Round.

Tell us how to improve this page.

Oracle Financial Services Software Senior Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Oracle Financial Services Software Senior Developer Salary
based on 13 salaries
₹8.1 L/yr - ₹28.6 L/yr
24% more than the average Senior Developer Salary in India
View more details

Oracle Financial Services Software Senior Developer Reviews and Ratings

based on 2 reviews

3.1/5

Rating in categories

2.1

Skill development

3.1

Work-life balance

3.0

Salary

3.9

Job security

3.1

Company culture

2.1

Promotions

3.1

Work satisfaction

Explore 2 Reviews and Ratings
Senior Consultant
1.3k salaries
unlock blur

₹7.5 L/yr - ₹21 L/yr

Staff Consultant
1.2k salaries
unlock blur

₹4.5 L/yr - ₹13.6 L/yr

Associate Consultant
1.1k salaries
unlock blur

₹3.2 L/yr - ₹10 L/yr

Principal Consultant
720 salaries
unlock blur

₹10 L/yr - ₹27.6 L/yr

Application Developer
507 salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Explore more salaries
Compare Oracle Financial Services Software with

Oracle

3.7
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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