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

Updated 12 Jul 2024

Finastra Software Engineer Interview Experiences

4 interviews found

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

(2 Questions)

  • Q1. Basic of .net topics
  • Q2. Advanced of .Net topics

Interview Preparation Tips

Interview preparation tips for other job seekers - They want a people who have a mind set to learn something. Its not about whether you are deep knowledge. Basic knowledge is enough. Attitude is more important than knowledge. You should be adaptable.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 1. basic core java concepts like jvm and multithreading

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy to crack the aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. Basics of java is enough

Software Engineer Interview Questions & Answers

user image Kunal Aggarwal

posted on 4 Jan 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Core Java related questions
  • Q2. Sql related questions
Round 3 - Technical 

(1 Question)

  • Q1. Project related interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good , cleared 2nd round of interview but hr did not come back.

Finastra interview questions for designations

 Associate Software Engineer

 (5)

 Senior Software Engineer

 (4)

 Software Developer

 (6)

 Software Tester

 (1)

 Devops Engineer

 (2)

 QA Engineer

 (2)

 System Engineer

 (2)

 Softwaretest Engineer

 (1)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Data Structures, Algorithms, System designing, Azure

Interview Questionnaire 

1 Question

  • Q1. Why important in learning programming languages.
  • Ans. 

    Learning programming languages is important for software engineers to effectively communicate with computers and develop software solutions.

    • Programming languages are the foundation of software development.

    • Learning multiple languages expands the range of problems a software engineer can solve.

    • Different languages have different strengths and are suited for different tasks.

    • Knowing multiple languages improves adaptability ...

  • Answered by AI

I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. If fresher is attending the interview then mostly they'll ask questions from resume What are generics, UML diagram for the proper medicine suggestions based on the patient allergies to a particular drug ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the contents of resume,
First round: versant test
Second round: Technical Interview 1
Third round: Technical Interview 2

Feedback of best of the 2 technical interviews will be considered.

IF selected will receive a call from HR

Software Engineer Interview Questions & Answers

Chetu user image Nirban Chatterjee

posted on 11 Oct 2020

I applied via Naukri.com and was interviewed before Oct 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Normal php questions like overriding,overloading,traits,interface,abstarct class nothing else.. It was online but in 2016.
  • Q2. Go though those topic as they are very important and asked in most companies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Read those topics and try to understand with example and doing on your own.Before entering Chetu prepare yourself that you may get fire anytime.Because hiring and firing is lot in Chetu but in terms of salary it is good.

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

Finastra Interview FAQs

How many rounds are there in Finastra Software Engineer interview?
Finastra interview process usually has 1-2 rounds. The most common rounds in the Finastra interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Finastra 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, SQL, HTML, Javascript and Software Design.
What are the top questions asked in Finastra Software Engineer interview?

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

  1. 1. basic core java concepts like jvm and multithread...read more
  2. Core Java related questi...read more
  3. Sql related questi...read more

Tell us how to improve this page.

Finastra Software Engineer Interview Process

based on 7 interviews

Interview experience

3.9
  
Good
View more
Finastra Software Engineer Salary
based on 328 salaries
₹5 L/yr - ₹16.7 L/yr
38% more than the average Software Engineer Salary in India
View more details

Finastra Software Engineer Reviews and Ratings

based on 57 reviews

3.5/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.2

Salary

3.7

Job security

3.6

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 57 Reviews and Ratings
Software Engineer
328 salaries
unlock blur

₹4.9 L/yr - ₹16.7 L/yr

Senior Software Engineer
325 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