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 Associate Software Engineer Interview Questions and Answers

Updated 2 Oct 2024

Finastra Associate Software Engineer Interview Experiences

5 interviews found

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

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

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude & Psychometric Test

Round 2 - Coding Test 

Technical Aptitude & Coding Round

Round 3 - Telephonic Call 

(1 Question)

  • Q1. Telephonic Interview - Checks for candidate's confidence and overview
Round 4 - Technical 

(1 Question)

  • Q1. Technical Face-to-Face & HR Round Combined

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more

I applied via Campus Placement and was interviewed in Apr 2022. 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 - Technical 

(1 Question)

  • Q1. Question were based on Angular and java array anf sorting questions he had asked.
Round 3 - Aptitude Test 

CCAT aptitude test 50 questions in 20 mins.
Minimum marks required were 31 out of 50

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up the basics and learn about the important concepts of java anf Database (sql).
For CCAT practice 3-4 times before taking the test.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 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 - Aptitude Test 

Easy test, but questions to be answered quickly.

Round 3 - Coding Test 

Coding test, not very difficult- testing of basic concepts.

Round 4 - One-on-one 

(1 Question)

  • Q1. Interview was in two parts: personality assessment and technical assessments.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with basics.

Finastra interview questions for designations

 Software Engineer

 (4)

 Senior Software Engineer

 (4)

 Software Developer

 (6)

 Software Tester

 (1)

 Associate Technical Engineer

 (1)

 QA Engineer

 (2)

 System Engineer

 (2)

 Devops Engineer

 (2)

I appeared for an interview before Feb 2016.

Interview Preparation Tips

Round: Test
Experience: First round was General Aptitude and Behaviour based exam. Pretty easy compared to the exams conducted by other companies. No preparation required.
Duration: 1 hour

College Name: NATIONAL INSTITUTE OF TECHNOLOGY DURGAPUR

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Machine learning advantages and disadvantage
hello world hello OWRLD2

Round 2 - HR 

(2 Questions)

  • Q1. What is u r name
  • Ans. 

    My name is John Doe.

    • Full name is John Doe

    • Common first and last name combination

    • No middle name provided

  • Answered by AI
  • Q2. What is salary expectation?
  • Ans. 

    I am looking for a competitive salary based on my skills, experience, and the industry standard.

    • Research the average salary for Associate Software Engineers in the industry

    • Consider your level of experience and skills when determining your salary expectation

    • Be prepared to negotiate based on the company's offer and benefits package

  • Answered by AI

Interview Preparation Tips

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

1 hour, around 40 questions on well known aptitude topics.

Round 2 - Coding Test 

Simple questions - overlapping area, bit manipulation

Round 3 - Technical 

(1 Question)

  • Q1. Simple program on printing even numbers, optimizing the code. Interviewer wanted to test your logical ability.
Round 4 - Behavioral 

(1 Question)

  • Q1. Three facts about you, you haven't mentioned in resume, why should we hire you etc..
Interview experience
4
Good
Difficulty level
Hard
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

There are 2 sections one is Output guess and Another one is Quantitative

Round 2 - Coding Test 

I didn't attend 2nd round..i was eliminated in 1st round

Interview Preparation Tips

Interview preparation tips for other job seekers - Study hard

I appeared for an interview in Apr 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 2 questions with Easy to Medium level of difficulty

  • Q1. 

    Problem: Total Area of Overlapping Rectangles

    You are given two rectangles situated on a 2-D coordinate plane, which may overlap. Your task is to compute the total area covered by these rectangles.

    Input...
  • Ans. 

    Calculate total area covered by two overlapping rectangles on a 2-D plane.

    • Calculate the area of each rectangle separately using the given coordinates.

    • Find the overlapping region by determining the intersection of the two rectangles.

    • Calculate the area of the overlapping region by multiplying its width and height.

    • Add the areas of the two rectangles and subtract the area of the overlapping region to get the total area cov

  • Answered by AI
  • Q2. 

    Rearrange Array: Move Negative Numbers to the Beginning

    Given an array ARR consisting of N integers, rearrange the elements such that all negative numbers are located before all positive numbers. The orde...

  • Ans. 

    Yes, this can be achieved by using a two-pointer approach to rearrange the array with negative numbers at the beginning.

    • Use two pointers, one starting from the beginning and one from the end of the array.

    • Swap elements at the two pointers if one is negative and the other is positive, and move the pointers accordingly.

    • Continue this process until the two pointers meet in the middle of the array.

    • The resulting array will ha...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Standard DS/Algo round with 2 questions

  • Q1. 

    Middle Node of a Linked List Problem Statement

    Given the head node of a singly linked list, return a pointer to the middle node of the linked list. If there are an odd number of nodes, return the middle o...

  • Ans. 

    Return the middle node of a singly linked list, considering odd and even number of nodes.

    • Traverse the linked list with two pointers, one moving at twice the speed of the other

    • When the faster pointer reaches the end, the slower pointer will be at the middle node

    • Handle cases for odd and even number of nodes separately

    • Return null if the list is empty

  • Answered by AI
  • Q2. 

    All Prime Numbers Less Than or Equal to N

    Given a positive integer N, your task is to return all the prime numbers less than or equal to N.

    Note:

    1) A prime number is a number that has only two factors:...
  • Ans. 

    Return all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime using a helper function.

    • A number is prime if it is not divisible by any number from 2 to its square root.

    • Store and return the prime numbers in an array in increasing order.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic Java-related concepts and then we discussed my expectations from the company, learnings and growth in the forthcoming years. I would suggest be honest and try to communicate your thoughts properly in these types of rounds to maximise your chances of getting selected.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in BangaloreEligibility criteria0-3 years of ExperienceSAP Labs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, SQL, Angular, JavaTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.

Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Tip 3 : Do at-least 2 good projects and you must know every bit of them.


 

Application resume tips for other job seekers

Tip 1 : Resume should be informative but not more than two pages
Tip 2 : Provide the links of all your achievements, projects and certificates in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jul 2023. 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 - Assignment 

Platform - Hackerrank
time- 90 minutes
2 dsa questions
output- got link for technical interview same day

Round 3 - Technical 

(2 Questions)

  • Q1. Binary tree traversal
  • Q2. Longest common subsequence
  • Ans. 

    Longest common subsequence is the longest sequence of characters that appear in the same order in both strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of longest common subsequences.

    • Iterate through the strings and fill the array based on the characters' matches.

    • Trace back the array to find the actual longest common subsequence.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Medium questions on OOPS
  • Ans. Questions on polymorphism and a design class question
  • Answered Anonymously
  • Q2. Explain all projects
  • Ans. Explain in detail and interviewer asked followup questions
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for SAP Associate Software Engineer interview:
  • OOPS
Interview preparation tips for other job seekers - Prepare Medium leetcode questions and oops

Skills evaluated in this interview

Finastra Interview FAQs

How many rounds are there in Finastra Associate Software Engineer interview?
Finastra interview process usually has 3 rounds. The most common rounds in the Finastra interview process are Aptitude Test, Coding Test and One-on-one Round.
How to prepare for Finastra Associate Software Engineer 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, Javascript, Analytical, SQL and HTML.
What are the top questions asked in Finastra Associate Software Engineer interview?

Some of the top questions asked at the Finastra Associate Software Engineer interview -

  1. print the reverse of the str...read more
  2. swap the two numbers of ar...read more
  3. Question were based on Angular and java array anf sorting questions he had aske...read more

Tell us how to improve this page.

Finastra Associate Software Engineer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more
Join Finastra FINANCE IS OPEN
Finastra Associate Software Engineer Salary
based on 165 salaries
₹5 L/yr - ₹10 L/yr
28% more than the average Associate Software Engineer Salary in India
View more details

Finastra Associate Software Engineer Reviews and Ratings

based on 26 reviews

3.3/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

3.5

Salary

3.4

Job security

3.5

Company culture

2.6

Promotions

2.9

Work satisfaction

Explore 26 Reviews and Ratings
Software Engineer
326 salaries
unlock blur

₹5.4 L/yr - ₹16.7 L/yr

Senior Software Engineer
323 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Associate Software Engineer
165 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

QA Engineer
88 salaries
unlock blur

₹5.5 L/yr - ₹11.5 L/yr

Senior QA Engineer
86 salaries
unlock blur

₹7.2 L/yr - ₹24.4 L/yr

Explore more salaries
Compare Finastra with

24/7 Customer

3.5
Compare

Microsoft Corporation

4.0
Compare

SAP

4.2
Compare

Thomson Reuters

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