Upload Button Icon Add office photos

Filter interviews by

Oracle Financial Services Software Software Developer II Interview Questions and Answers

Updated 21 Nov 2023

Oracle Financial Services Software Software Developer II Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Nov 2022. There were 4 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 - Technical 

(1 Question)

  • Q1. Promises, basic output questions, let vs const, hoisting
Round 3 - Technical 

(1 Question)

  • Q1. Currying, Event Bubbling, DOM Manipulation, Medium Level Output Questions, Design Patterns
Round 4 - Behavioral 

(1 Question)

  • Q1. Previous work experience and tech stack used, OOPs concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on core JavaScript concepts. Practice coding questions related to advanced javascript. Data structures were not asked for the front-end interview.

Interview questions from similar companies

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

They asked me to create a live working project and sufficient time was provided.

Round 2 - One-on-one 

(1 Question)

  • Q1. Detailed discussion around the project created in round 1. Each and every details were asked and discussion on approach.
Round 3 - One-on-one 

(1 Question)

  • Q1. This was final managerial round.

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Logic based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Face the questions smartly
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a program which will take string and number of occurrences as a input. Find a character with same occurrences count in single interation.(multiples cases around this, not able to recall)
  • Q2. Graph traversal
Round 2 - Technical 

(1 Question)

  • Q1. System design components discussed in detail with different scenarios
Round 3 - Behavioral 

(1 Question)

  • Q1. Prepare standard conflict manager round questions like conflict resolution, team leading experience, best work delivered, standard practices etc

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Prepare Javascript, Typescript l, NodeJs
2. Medium level questions of problem solving
3. Overall understanding of system design components
4. Standard managerial round
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was nice, it was nice, it was nice

Round 2 - Technical 

(5 Questions)

  • Q1. It was nice, it was nice, it was nice
  • Q2. It was nice it was nice it was nice
  • Q3. It was really nice
  • Q4. It was really great
  • Q5. It was really awesome

Interview Preparation Tips

Interview preparation tips for other job seekers - it is nice, it is nice, it is nice
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

Mainly 4 Questions
1-2 MCQ
3: Create a class deriving from IReptile and return an object of HatchEgg which has Hatch Method. Hatch Method should return same IReptile object.
4) Sorting IDs in dictionary

Round 2 - Technical 

(2 Questions)

  • Q1. The Interviewer was Very Rude and he doesn't care about the Requirements of Hiring a candidate. he was constantly asking about Other Companies Architectures and The things you did in them. instead of havin...
  • Q2. SOLID, Interfaces , Boxing/Unboxing

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay away from this company. very toxic
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(4 Questions)

  • Q1. Find longest palindromic substring in a given string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes.

    • Store the length of the longest palindrome found so far.

    • Return the substring based on the start and end indices of the longest palindrome.

  • Answered by AI
  • Q2. How to serialize and deserialise a tree
  • Ans. 

    To serialize and deserialize a tree, use a recursive approach to traverse the tree and store the data in a suitable format.

    • Use pre-order traversal to serialize the tree by storing the node values in a list or string.

    • For deserialization, reconstruct the tree by recursively building nodes from the serialized data.

    • Consider using JSON or XML format for serialization to easily store and retrieve tree structure.

  • Answered by AI
  • Q3. Find if a given regex (containing ., * and lower case english chars) matches a given string.
  • Ans. 

    Use regex library to match given regex with string.

    • Use a regex library like re in Python to match the given regex with the string.

    • Check if the regex matches the string using the library functions.

    • Handle cases where the regex contains special characters like . and * appropriately.

  • Answered by AI
  • Q4. Explain about throttling and implement throttle function.
  • Ans. 

    Throttling is a technique used to control the rate of requests sent to a server.

    • Throttling helps prevent server overload by limiting the number of requests processed at a time.

    • Implementing a throttle function involves setting a maximum request rate and delaying excess requests.

    • Example: Implementing a throttle function in a web application to limit the number of API calls made to a third-party service.

    • Example: Throttlin...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Find squares of elements in a sorted array and return the sorted response.
  • Ans. 

    Sort the squares of elements in a sorted array and return the sorted response.

    • Iterate through the array and square each element.

    • Store the squared values in a new array.

    • Sort the new array and return it.

  • Answered by AI
  • Q2. Write a short promise example and implement your own promise
  • Ans. 

    A promise is a commitment to do something in the future, typically used for asynchronous operations in JavaScript.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They represent a value that may be available now, in the future, or never.

    • Promises have three states: pending, fulfilled, or rejected.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q3. Explain event loop, what are different types of queues in event loop
  • Ans. 

    Event loop is a mechanism that allows for asynchronous execution of code by managing the order of events in a single thread.

    • Event loop continuously checks the call stack for any functions that need to be executed, and processes them in a non-blocking manner.

    • Different types of queues in event loop include microtask queue (Promise callbacks), macrotask queue (setTimeout, setInterval callbacks), and animation frame queue

  • Answered by AI
  • Q4. What is virtual DOM and why its faster
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used to improve performance by minimizing direct manipulation of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to optimize rendering performance.

    • Changes are first made to the virtual DOM, which is then compared to the real DOM to identify the minimal updates needed.

    • This approach reduces the number of actual DOM manipulations, resulting in faster...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Engineer interview:
  • React.Js
  • Javascript
  • DSA

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular structure
  • Q2. Dependency injection
Round 2 - Technical 

(2 Questions)

  • Q1. Manageral questions
  • Q2. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Package discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How does the CAN TP (Controller Area Network Transport Protocol) work?
  • Ans. 

    CAN TP is a protocol used for transferring large data packets over Controller Area Network.

    • CAN TP breaks large data packets into smaller segments for transmission

    • It uses flow control mechanisms to ensure all segments are received and retransmits if necessary

    • CAN TP is commonly used in automotive and industrial applications

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain autosar layer
  • Ans. 

    AUTOSAR (Automotive Open System Architecture) is a standardized software architecture for automotive systems.

    • AUTOSAR is a layered architecture consisting of four layers: Application Layer, Runtime Environment (RTE) Layer, Basic Software Layer, and Microcontroller Abstraction Layer (MCAL).

    • Each layer in AUTOSAR has specific responsibilities and interfaces with other layers to ensure modularity and reusability of software...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Are you prepared to work from home?
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the importance of manual testing when compared to automation testing
  • Ans. 

    Manual testing is important for exploratory testing, usability testing, and ad-hoc testing.

    • Manual testing allows for exploratory testing where testers can explore the application and identify unexpected issues.

    • Usability testing, which involves real users interacting with the software, is best done manually to capture user experience.

    • Ad-hoc testing, where testers randomly test the application without predefined test cas...

  • Answered by AI
  • Q2. Real life scenario on web application testing
  • Ans. 

    Testing a web application for an online shopping platform

    • Testing the functionality of adding items to the cart and checking out

    • Testing the payment gateway integration for secure transactions

    • Testing the search functionality to ensure accurate results are displayed

    • Testing the responsiveness of the website on different devices and browsers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If some one want to apply any of the job in this company then please do have some experience even though they mentioned for freshers bsc, however you do your interview as best as possible at last they gonna reject bsc of lack of experience. Same happened to me.So plzz only attened any Oracle company interview if you have experience.

Skills evaluated in this interview

Oracle Financial Services Software Interview FAQs

How many rounds are there in Oracle Financial Services Software Software Developer II interview?
Oracle Financial Services Software interview process usually has 4 rounds. The most common rounds in the Oracle Financial Services Software interview process are Technical, Resume Shortlist and Behavioral.
What are the top questions asked in Oracle Financial Services Software Software Developer II interview?

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

  1. Currying, Event Bubbling, DOM Manipulation, Medium Level Output Questions, Desi...read more
  2. Promises, basic output questions, let vs const, hoist...read more

Tell us how to improve this page.

Oracle Financial Services Software Software Developer II Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Oracle Interview Questions
3.7
 • 902 Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
View all
Oracle Financial Services Software Software Developer II Salary
based on 43 salaries
₹10 L/yr - ₹20.5 L/yr
At par with the average Software Developer II Salary in India
View more details

Oracle Financial Services Software Software Developer II Reviews and Ratings

based on 6 reviews

3.6/5

Rating in categories

3.3

Skill development

3.9

Work-life balance

3.0

Salary

4.0

Job security

3.6

Company culture

2.3

Promotions

3.2

Work satisfaction

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

₹7.5 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
716 salaries
unlock blur

₹10 L/yr - ₹28.5 L/yr

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