Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Finastra Team. If you also belong to the team, you can get access from here

Finastra Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Finastra Interview Questions, Process, and Tips

Updated 2 Dec 2024

Top Finastra Interview Questions and Answers

View all 40 questions

Finastra Interview Experiences

Popular Designations

53 interviews found

I was interviewed before Jun 2016.

Interview Questionnaire 

14 Questions

  • Q1. What is deadlock?
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular dependency, where each process is waiting for a resource held by another process.

    • It can happen in multi-threaded or multi-process environments.

    • Deadlock can be caused by resource contention, improper synchronization, or pr...

  • Answered by AI
  • Q2. Difference between performance testing and engineering
  • Ans. 

    Performance testing focuses on evaluating the speed, responsiveness, and stability of a system, while performance engineering involves designing and optimizing the system for optimal performance.

    • Performance testing is the process of testing the performance characteristics of a system under specific conditions.

    • Performance engineering is the proactive approach of designing, building, and optimizing a system for optimal p...

  • Answered by AI
  • Q3. What is memory leak issue? And how do you handle this?
  • Ans. 

    Memory leak is a software issue where allocated memory is not released, leading to memory consumption and performance degradation.

    • Memory leak occurs when a program fails to deallocate memory that is no longer needed.

    • It can happen due to programming errors like not freeing allocated memory or losing references to it.

    • Memory leaks can cause the program to consume excessive memory, leading to performance issues and crashes...

  • Answered by AI
  • Q4. Where can be performance bottleneck?
  • Ans. 

    Performance bottleneck can occur in various areas of an application.

    • Database queries and indexing

    • Network latency and bandwidth

    • CPU and memory usage

    • Code inefficiencies and poor algorithms

    • Third-party integrations

    • Hardware limitations

    • User load and concurrency

    • Application architecture

    • Caching and session management

    • Security measures

    • External factors such as weather or power outages

  • Answered by AI
  • Q5. How to handle CPU bottleneck?
  • Ans. 

    CPU bottleneck can be handled by optimizing code, upgrading hardware, and load balancing.

    • Identify the root cause of the CPU bottleneck through performance monitoring tools.

    • Optimize the code by identifying and fixing inefficient algorithms or resource-intensive operations.

    • Upgrade hardware by adding more powerful CPUs or increasing the number of cores.

    • Implement load balancing techniques to distribute the workload across ...

  • Answered by AI
  • Q6. How JVM works?
  • Ans. 

    JVM is a virtual machine that executes Java bytecode. It manages memory, provides runtime environment, and enables platform independence.

    • JVM stands for Java Virtual Machine.

    • It is responsible for interpreting and executing Java bytecode.

    • JVM manages memory allocation and garbage collection.

    • It provides a runtime environment for Java applications.

    • JVM enables platform independence by abstracting the underlying hardware and ...

  • Answered by AI
  • Q7. What is load balancing?
  • Ans. 

    Load balancing is the process of distributing network traffic across multiple servers to optimize performance and prevent overload.

    • Load balancing improves scalability and availability of applications.

    • It ensures that no single server is overwhelmed with traffic.

    • Load balancers can use various algorithms to distribute traffic, such as round-robin, least connections, or IP hash.

    • Examples of load balancing technologies inclu...

  • Answered by AI
  • Q8. What is performance engineering? Explain in details
  • Ans. 

    Performance engineering is the process of designing, implementing, and optimizing systems to meet performance requirements.

    • Performance engineering involves analyzing and understanding performance requirements

    • It includes designing and implementing systems to meet those requirements

    • Optimizing systems through load testing, stress testing, and performance tuning

    • Performance engineering also involves monitoring and analyzing...

  • Answered by AI
  • Q9. Explain the scenario where you have faced memory leak issue?
  • Ans. 

    Yes

    • During load testing of a web application, memory usage gradually increased over time

    • Identified the memory leak by monitoring memory consumption using performance testing tools

    • Investigated the code and found a section where objects were not being properly released

    • Fixed the memory leak by implementing proper object disposal and memory management techniques

  • Answered by AI
  • Q10. What kind of innovation idea you come up with?
  • Ans. 

    One innovation idea I came up with is implementing AI-driven performance testing tools.

    • Developing machine learning algorithms to predict performance bottlenecks

    • Utilizing natural language processing for test script generation

    • Implementing self-learning capabilities to optimize test scenarios

  • Answered by AI
  • Q11. How early can you join?
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I can start within 2 weeks of receiving an offer.

    • I need to give notice to my current employer.

    • I may need time to relocate if necessary.

  • Answered by AI
  • Q12. What is your expected CTC?
  • Ans. 

    My expected CTC is negotiable based on the job responsibilities, company size, and industry standards.

    • My expected CTC is based on my experience, skills, and qualifications.

    • I have researched the market rates for Performance Testers in similar roles and industries.

    • I am open to discussing the compensation package and benefits offered by the company.

    • I believe in a fair and competitive salary that aligns with my expertise a...

  • Answered by AI
  • Q13. Why do you want to join Misys?
  • Ans. 

    I want to join Misys because of their reputation for innovation and their commitment to excellence in the field of performance testing.

    • Misys is known for their cutting-edge technology and solutions in the financial services industry

    • I am impressed by Misys' track record of delivering high-quality products and services to their clients

    • I believe that Misys offers a great opportunity for professional growth and development

  • Answered by AI
  • Q14. When can you join?
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I can start within 2 weeks of receiving an offer.

    • My current notice period is 2 weeks.

    • I am available to start immediately.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 45 minutes
Total Questions: 40

Skills evaluated in this interview

Top Finastra Performance Tester Interview Questions and Answers

Q1. Explain the scenario where you have faced memory leak issue?
View answer (1)

Performance Tester Interview Questions asked at other Companies

Q1. Assertion in Jmeter. what protocol used in jmeter 3. what is hit per second. 4.why after some number hit/sec become constant 5. what is sync and async testing. 6. what is standard deviation. 7. how u handle assertion dynamically 8. what lis... read more
View answer (1)

Analyst Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2024

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

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduction and role description
  • Q2. Past experience
Round 2 - Technical 

(1 Question)

  • Q1. Technical question on role based

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Finastra Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Swap the two numbers of array
  • Ans. 

    Swap the positions of two numbers in an array of strings.

    • Iterate through the array to find the positions of the two numbers to be swapped.

    • Store the two numbers in temporary variables.

    • Swap the positions of the two numbers in the array.

  • Answered by AI
  • Q2. Print the reverse of the string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Append each character to a new string in reverse order

    • Return the reversed string

  • Answered by AI

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Payment E2E Flow

Interview Preparation Tips

Interview preparation tips for other job seekers - Payments and have in depth information of your resume

Product Owner Interview Questions asked at other Companies

Q1. What are the prioritization techniques you use to arrange backlog items?
View answer (3)

Finastra interview questions for popular designations

 Software Developer

 (6)

 Associate Software Engineer

 (5)

 Software Engineer

 (4)

 Senior Software Engineer

 (4)

 Devops Engineer

 (2)

 System Engineer

 (2)

 QA Engineer

 (2)

 Analyst

 (1)

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Asked question on Java, Spring boot , SQL basic to advance
Round 2 - Technical 

(1 Question)

  • Q1. Array coding question. they are mainly checking on time complexity and space complexity

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared two technical rounds. In final Managerial round I got rejected. Really, I'm not understating their strategy because all rounds went well, I was hoping I could be able to get this opportunity but unfortunately not. While giving an interview I notice that Manger was not technically knows skills and their benefits of ongoing skills, He wants still to use old technologies and he was strict to that way only. Please don't play your time with candidates those who really putting effort on preparation and giving an interview.

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Get interview-ready with Top Finastra Interview Questions

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

50 questions and it was easy

Round 2 - Technical 

(2 Questions)

  • Q1. Basic programming questions
  • Q2. Any previous experience related questions
Round 3 - HR 

(1 Question)

  • Q1. Personal questions only

Technical Consultant Interview Questions asked at other Companies

Q1. Oops C and java difference Query for selecting all columns from a table 10 uses of a pen Personal questions like the place we belong to What do you know about our company The interview was not really good ,I got selected 😅 for role of tech... read more
View answer (1)

Jobs at Finastra

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Coding Test 

The test consisted of 3 coding questions

Round 2 - Aptitude Test 

The round was pretty easy but time was very less

Round 3 - Technical 

(1 Question)

  • Q1. The questions asked were: 1. Explain Projects (As one of my project had an JDBC integration code, the interviewer asked to to tell the code orally) 2. SQL Queries 3. DSA Questions (Delete last node from a...
Round 4 - Presentation 

(1 Question)

  • Q1. Make a power point presentation on "Generative AI and Fintech"
  • Ans. 

    Generative AI and Fintech: Exploring the intersection of artificial intelligence and financial technology.

    • Generative AI can be used in Fintech for tasks such as fraud detection, risk assessment, and personalized financial recommendations.

    • Examples of Generative AI in Fintech include chatbots for customer service, algorithmic trading systems, and credit scoring models.

    • The combination of Generative AI and Fintech has the ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Finastra Software Developer interview:
  • Java
  • DSA
  • OOPS
  • SQL

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

QA Engineer Interview Questions & Answers

user image Shai Tzohar

posted on 22 Aug 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. About previous job
  • Q2. Technical details
Round 2 - Aptitude Test 

SQL , Qa daily work, automation questions

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Apr 2024

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

(4 Questions)

  • Q1. Give few examples of testing done in real life scenarios
  • Ans. 

    Testing in real life scenarios involves checking the functionality and performance of products or services in practical situations.

    • Testing the durability of a new phone by dropping it from different heights

    • Testing the waterproof feature of a watch by submerging it in water

    • Testing the battery life of a laptop by using it continuously for a certain period

    • Testing the taste and quality of a new food product by conducting a...

  • Answered by AI
  • Q2. SQL realted questions
  • Q3. What is regression testing
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • It involves running previously executed test cases to verify that the existing features still work correctly after code changes.

    • Regression testing helps in identifying any defects introduced by new code changes.

    • Automated testing tools are often used to streamline the r...

  • Answered by AI
  • Q4. Tell me something about finastra

Skills evaluated in this interview

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. About payments domain

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (8)

Risk Manager Interview Questions & Answers

user image Anonymous

posted on 20 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. On Technology Risk Management

Risk Manager Interview Questions asked at other Companies

Q1. What do you mean by asset liability managemnt?
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Finastra Interview FAQs

How many rounds are there in Finastra interview?
Finastra interview process usually has 2-3 rounds. The most common rounds in the Finastra interview process are Technical, Aptitude Test and HR.
How to prepare for Finastra interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Finastra. The most common topics and skills that interviewers at Finastra expect are Recruitment, SQL, Analytical, Javascript and HTML.
What are the top questions asked in Finastra interview?

Some of the top questions asked at the Finastra interview -

  1. Explain the scenario where you have faced memory leak iss...read more
  2. What is memory leak issue? And how do you handle th...read more
  3. How does a bank treat the Accounting Entries after the activities such as Princ...read more
How long is the Finastra interview process?

The duration of Finastra interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

SALARIES

Publicis Sapient

INTERVIEWS

Finastra

No Interviews

INTERVIEWS

Finastra

No Interviews

INTERVIEWS

Finastra

No Interviews

Tell us how to improve this page.

Finastra Interview Process

based on 47 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
FIS Interview Questions
3.9
 • 482 Interviews
Temenos Interview Questions
3.3
 • 82 Interviews
View all

Finastra Reviews and Ratings

based on 500 reviews

3.8/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.6

Salary

3.4

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 500 Reviews and Ratings
Senior Technical Consultant

Pune

5-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
328 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
322 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
163 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior QA Engineer
90 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
86 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Finastra with

Temenos

3.2
Compare

FIS

3.9
Compare

Nucleus Software Exports

3.5
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent