Upload Button Icon Add office photos

Filter interviews by

Oracle Financial Services Software Software Developer Interview Questions and Answers

Updated 8 May 2024

Oracle Financial Services Software Software Developer Interview Experiences

4 interviews found

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

(2 Questions)

  • Q1. What is memory leak
  • Ans. 

    Memory leak is a situation where a program fails to release memory it has allocated, leading to a gradual loss of available memory.

    • Memory leaks occur when a program allocates memory but does not free it after use.

    • This can lead to a gradual increase in memory usage over time, potentially causing the program to slow down or crash.

    • Common causes of memory leaks include improper memory management in languages like C or C++.

    • ...

  • Answered by AI
  • Q2. Steps to connect database to java
  • Ans. 

    To connect a database to Java, you need to use JDBC (Java Database Connectivity) API.

    • Import JDBC library in your Java project

    • Load the database driver using Class.forName() method

    • Establish a connection to the database using DriverManager.getConnection() method

    • Create a statement object to execute SQL queries

    • Execute SQL queries and process the results

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Core java basic details
  • Q2. Everything related to basic core java
  • Ans. Learn deeply into basic core java concepts
  • Answered Anonymously

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
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 Sep 2023. There were 3 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 - Aptitude Test 

Time and distance, ages, interest, speed and circular arrangment

Round 3 - Coding Test 

Hirepro 45 mins 2questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident, thorough with dsa

I was interviewed in Nov 2016.

Interview Questionnaire 

5 Questions

  • Q1. Questions on Economy(little hard)
  • Q2. Questions on derivatives(moderate level)
  • Q3. Questions on accounting(basic)
  • Q4. It was like a mini technical round..the questions were on portfolio management
  • Q5. Very basic..

Interview Preparation Tips

Round: Test
Experience: The difficulty level of test was moderate..but the reasoning was timetaking..
Tips: Lot of questions..
Total Questions: 120

Round: Technical Interview
Experience: The difficulty level of test was moderate..but the reasoning was timetaking..
Tips: Lot of questions..

Oracle Financial Services Software interview questions for designations

 Senior Software Developer

 (1)

 Software Developer II

 (1)

 Software Developer III

 (1)

 Developer

 (2)

 Software Engineer

 (9)

 Application Developer

 (3)

 Plsql Developer

 (2)

 Senior Developer

 (1)

Interview questions from similar companies

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
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

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

(1 Question)

  • Q1. Diff var let const
  • Ans. 

    diff var let const

    • var is function-scoped, let and const are block-scoped

    • var can be redeclared and reassigned, let can be reassigned but not redeclared, const cannot be reassigned or redeclared

    • const must be initialized during declaration, let and var can be declared without initialization

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Related to node js architecture
Round 3 - HR 

(1 Question)

  • Q1. Expectation and all

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about you?
  • Q2. SQL Server And C#
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Internal working of Hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hashed a...

  • Answered by AI
  • Q2. Memory management in java
  • Ans. 

    Java uses automatic memory management through garbage collection to allocate and deallocate memory.

    • Java uses garbage collection to automatically manage memory allocation and deallocation.

    • Garbage collection runs in the background to reclaim memory from objects that are no longer in use.

    • Java provides the 'finalize()' method to allow objects to perform cleanup before being garbage collected.

  • Answered by AI

Skills evaluated in this interview

Oracle Financial Services Software Interview FAQs

How many rounds are there in Oracle Financial Services Software Software Developer interview?
Oracle Financial Services Software interview process usually has 1-2 rounds. The most common rounds in the Oracle Financial Services Software interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in Oracle Financial Services Software Software Developer interview?

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

  1. steps to connect database to j...read more
  2. what is memory l...read more
  3. It was like a mini technical round..the questions were on portfolio managem...read more

Tell us how to improve this page.

Oracle Financial Services Software Software Developer Interview Process

based on 5 interviews

1 Interview rounds

  • Technical Round
View more
Oracle Financial Services Software Software Developer Salary
based on 190 salaries
₹5.7 L/yr - ₹21 L/yr
55% more than the average Software Developer Salary in India
View more details

Oracle Financial Services Software Software Developer Reviews and Ratings

based on 34 reviews

3.9/5

Rating in categories

3.5

Skill development

4.1

Work-life balance

3.4

Salary

4.4

Job security

4.1

Company culture

3.0

Promotions

3.6

Work satisfaction

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

₹5.8 L/yr - ₹21 L/yr

Staff Consultant
1.1k 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
717 salaries
unlock blur

₹10 L/yr - ₹29 L/yr

Application Developer
492 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