Filter interviews by
I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.
I applied via campus placement at National Institute of Technology (NIT), Rourkela and was interviewed before Oct 2022. There were 4 interview rounds.
20 questions, simple aptitude.
C++ supports multiple inheritance, Java supports single inheritance. C++ has pointers, Java has references.
C++ supports multiple inheritance, Java supports single inheritance
C++ has pointers, Java has references
C++ does not have built-in garbage collection, Java has automatic garbage collection
I was interviewed in Sep 2021.
Round duration - 150 minutes
Round difficulty - Hard
Oracle’s aptitude test is one of the longest aptitude tests I appeared for in my placement phase. It was around 2hrs 30mins long.
Questions were from basically every subject I had studied like OS, CN, SDLC, etc. Questions weren’t too hard but the difficult part about this test is that it was divided into sections and sub-sections.
Each sub-section had its own independent time interval so bringing it down to like 10 quant questions in 14 minutes might sound easy but it’s not. So managing time is the only difficult part of this round.
The correct SQL query to select the top 5 numbers from the given data is 'SELECT TOP 5 number FROM table_name ORDER BY number DESC'.
Use the 'SELECT' statement to specify the columns you want to retrieve.
Use the 'TOP' keyword followed by the number of rows you want to select.
Specify the column name in the 'ORDER BY' clause to sort the data in descending order.
Create an AVL tree from scratch. You will be provided with ‘N’ values representing node values you need to insert into the AVL tree. After inserting all values, return the root of ...
The question asks to implement an AVL_TREE from scratch and insert given values into it.
AVL_TREE is a self-balancing binary search tree
The height difference between left and right subtrees of all nodes should not be more than one
Implement the AVL_TREE data structure and insertion algorithm
Return the root of the AVL_TREE after inserting all the nodes
Round duration - 30 minutes
Round difficulty - Easy
The Technical Interview started off very fine and lasted for about 30-40 minutes. There were few HR questions in the beginning. The interviewer is very friendly. Firstly they asked me to tell them about myself. then the reasons for choosing this Profile. Then he asked me to explain the projects I have done. I have explained them. They have interrupted me and asked some doubts meanwhile. But I felt that they were intended just to check my confidence and how would I explain their doubts. They asked me some DSA Questions but I told them I am not much confident in DSA then they asked Basic Questions on DBMS like Explain about Normalization of DB, self Join, etc. And at the end, he asked me a general aptitude question based on Distance and time.
Overall the Interview was quite easy. Just learn the basics. Maintain good communication skills. Be confident and add good projects to your CV. Then it will be very easy to crack this round.
Write a query to select data from a large collection.
Use the SELECT statement to specify the columns you want to retrieve.
Use the FROM clause to specify the table or tables from which to retrieve the data.
Use the WHERE clause to specify any conditions that the retrieved data must meet.
Use the ORDER BY clause to sort the retrieved data in a specific order.
Use the LIMIT clause to limit the number of rows returned, if nec
Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.
The first line contains a single integer 'T' representing the numb...
The task is to find the third largest element in an array of distinct integers.
Read the number of test cases 'T'
For each test case, read the number of elements 'N' and the array 'ARR'
Sort the array in descending order
Return the element at index 2 as the third largest element
Round duration - 30 minutes
Round difficulty - Easy
In the first 10 min, He asked me general HR questions like why OFSS. What are your strengths etc?
Then he asked me a puzzle. Then he asked me some questions from my resume regarding my internship and extracuriculars.
Then he asked me questions related to banking like how banks earn money, is a loan asset or liability, is FD asset or liability for a bank, and as I knew all these financial concepts already so it was quite easy for me to crack this round. The interviewer was very friendly and then I asked him some questions regarding the job profile and he answered every question happily and it was visible on his face that he is happy with my interview.
Tip 1 : Have a strong grip over the basics concepts of OOPS like classes, objects, encapsulation, polymorphism, data abstraction, and Inheritance.
Tip 2 : You should know how the SQL queries work and have a command on their database called Oracle.
Tip 3 : Learn javascript as its their most important requirement and it will give a strong edge over others. So C++,OOPS,SQL and Javascript are most important requirements and other things you should be aware of are Basics of DSA, Web development.
Tip 1 : You should have at least one project on your resume, mine was a web development group project and I did front-end work and the interviewer discussed it for at least 10 minutes.
Tip 2 : Have something on your resume that shows you are a team player and can work really efficiently working with the team like I lead a team of 5 during Smart India Hackathon and it gave me a huge edge over others.
What people are saying about Oracle Financial Services Software
I applied via Naukri.com and was interviewed before Sep 2022. There were 3 interview rounds.
A Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.
Hashmap uses a hash function to map keys to indices in an array.
It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.
Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.
Example: HashMap<...
Collection framework in Java is a set of classes and interfaces that provide a standard way to store and manipulate groups of objects.
Collection framework includes interfaces like List, Set, and Map, along with their respective implementations like ArrayList, HashSet, and HashMap.
It provides methods to add, remove, and access elements in a collection, as well as perform operations like sorting and searching.
Collections...
Oracle Financial Services Software interview questions for popular designations
I applied via Naukri.com and was interviewed in Nov 2021. There were 5 interview rounds.
Get interview-ready with Top Oracle Financial Services Software Interview Questions
I applied via Approached by Company and was interviewed before Aug 2021. There were 2 interview rounds.
Design a voting system for a university
Identify the type of voting system required (e.g. electronic, paper-based)
Determine the scope of the voting system (e.g. student council elections, faculty senate votes)
Establish eligibility criteria for voters and candidates
Create a secure and anonymous voting process
Implement a system for vote counting and result reporting
I have experience with Jenkins, Git, Docker, and Kubernetes for building and deploying microservices.
I have used Jenkins for continuous integration and continuous deployment
I have used Git for version control and managing code changes
I have used Docker for containerization and packaging of microservices
I have used Kubernetes for container orchestration and scaling
I plan a pipeline by defining stages for building, testi...
I applied via Company Website and was interviewed before May 2023. There was 1 interview round.
Aptitude was on simple English vocabulary and basis maths
I applied via Naukri.com and was interviewed before Jan 2023. There were 2 interview rounds.
I applied via Recruitment Consulltant and was interviewed in Oct 2021. There were 2 interview rounds.
Transaction management in microservices is crucial for ensuring data consistency and integrity.
Each microservice should have its own database to manage transactions independently.
Use distributed transactions or two-phase commit protocol to ensure atomicity across multiple microservices.
Implement compensating transactions to handle failures and rollbacks.
Consider using event-driven architecture to decouple services and ...
Distributed tracing is a technique used to monitor and debug microservices architecture.
It involves tracking requests as they flow through multiple services
Each service adds its own trace information to the request
This allows for easy identification of performance bottlenecks and errors
Tools like Zipkin and Jaeger can be used for distributed tracing
Load balancing and messaging are crucial for scalability and reliability in microservices architecture.
Load balancing ensures even distribution of traffic among multiple instances of a service.
Messaging enables asynchronous communication between microservices.
Load balancing can be achieved through software or hardware solutions like NGINX, HAProxy, or AWS ELB.
Messaging can be implemented using message brokers like Rabb...
I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.
Some of the top questions asked at the Oracle Financial Services Software interview -
The duration of Oracle Financial Services Software interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 143 interviews
Interview experience
based on 1.2k reviews
Rating in categories
Senior Consultant
1.3k
salaries
| ₹5.8 L/yr - ₹21 L/yr |
Staff Consultant
1.1k
salaries
| ₹4.5 L/yr - ₹13.6 L/yr |
Associate Consultant
1.1k
salaries
| ₹3.2 L/yr - ₹10 L/yr |
Principal Consultant
717
salaries
| ₹10 L/yr - ₹29 L/yr |
Application Developer
492
salaries
| ₹6 L/yr - ₹23 L/yr |
Oracle
TCS
Infosys
Wipro