Premium Employer

i

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

FIS Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

FIS Software Developer Interview Questions and Answers

Updated 13 May 2025

8 Interview questions

A Software Developer was asked 5mo ago
Q. What are the pillars of OOPS, and can you explain them?
Ans. 

OOPS pillars are the four main principles of Object-Oriented Programming: Encapsulation, Inheritance, Polymorphism, and Abstraction.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Inheritance: Allowing a class to inherit properties and behavior from another class.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex impleme...

A Software Developer was asked 5mo ago
Q. Do you have any certifications?
Ans. 

Yes, I have certifications in Java and AWS.

  • Certified in Java programming language

  • Certified in Amazon Web Services (AWS)

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. How can you handle exceptions in the case of inheritance?
Ans. 

Exceptions in inheritance can be handled by using try-catch blocks in the derived class.

  • Use try-catch blocks in the derived class to catch exceptions thrown by the base class methods.

  • Handle exceptions specific to the derived class in the catch block.

  • Consider using super() to call the base class constructor within the try block.

  • Avoid catching general exceptions unless necessary to maintain code clarity.

  • Ensure prope...

A Software Developer was asked
Q. What is the data type of auto?
Ans. 

The data type of auto is determined by the value assigned to it at compile time.

  • The auto keyword in C++ is used to automatically deduce the data type of a variable based on its initializer.

  • The data type of auto can be any valid C++ type, including fundamental types, user-defined types, or even complex types like function pointers or lambda expressions.

  • The actual data type of auto is resolved by the compiler during...

A Software Developer was asked 5mo ago
Q. If given CityName as parameter to method then get all the movies in that city. If given MovieName as parameter then get all the theaters with that movie
Ans. 

Use conditional statements to determine whether the parameter is CityName or MovieName, then query the database accordingly.

  • Check if the parameter is CityName or MovieName

  • If CityName, query database for all movies in that city

  • If MovieName, query database for all theaters showing that movie

A Software Developer was asked 1mo ago
Q. Pipes concepts in angular
Ans. 

Pipes in Angular transform data for display in templates, enhancing UI with formatting and filtering capabilities.

  • Pipes are simple functions that accept an input value and return a transformed value.

  • Angular provides built-in pipes like DatePipe, CurrencyPipe, and DecimalPipe for common transformations.

  • Custom pipes can be created using the @Pipe decorator, allowing for tailored data transformations.

  • Example of a bui...

A Software Developer was asked
Q. JAVA CODES FOR BEGINNER
Ans. 

Java codes for beginners include basic syntax, data types, control structures, and object-oriented programming concepts.

  • Learn basic syntax and data types such as int, double, and String.

  • Understand control structures like if-else statements and loops.

  • Familiarize yourself with object-oriented programming concepts like classes and objects.

  • Practice coding exercises and projects to reinforce your learning.

  • Utilize onlin...

Are these interview questions helpful?
A Software Developer was asked
Q. NODE FUNCTIONS FOR BINARY
Ans. 

Node functions for binary are used to manipulate binary data in Node.js.

  • The Buffer class is used to handle binary data in Node.js.

  • The `toString()` method can be used to convert binary data to a string.

  • The `write()` method can be used to write binary data to a buffer.

  • The `read()` method can be used to read binary data from a buffer.

  • The `slice()` method can be used to extract a portion of a buffer.

  • The `concat()` met...

FIS Software Developer Interview Experiences

12 interviews found

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

(1 Question)

  • Q1. Basics of angular, ts,js
Round 2 - One-on-one 

(1 Question)

  • Q1. Programming questions
Round 3 - HR 

(1 Question)

  • Q1. Family backgroud
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Oops related questions
  • Q2. How you can handle exceptions in case of inheritance
  • Ans. 

    Exceptions in inheritance can be handled by using try-catch blocks in the derived class.

    • Use try-catch blocks in the derived class to catch exceptions thrown by the base class methods.

    • Handle exceptions specific to the derived class in the catch block.

    • Consider using super() to call the base class constructor within the try block.

    • Avoid catching general exceptions unless necessary to maintain code clarity.

    • Ensure proper exc...

  • Answered by AI
  • Q3. Collections questions
  • Q4. Live coding based on the answers you give
  • Q5. Your current project and how you handled difficulties in that

Interview Preparation Tips

Topics to prepare for FIS Software Developer interview:
  • Core Java
  • Spring Boot
  • Microservices
Interview preparation tips for other job seekers - Have a good hands on with all the Java concepts you should be able to explain every concept using code. Don't just reply on online interview questions always think very deeply about each and every concept this will help you to tackle hardest interview questions with deep concept knowledge
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Topics in AWS, Projects done at previous employers, basic questions on Angular. Messaging pattern, why use messaging instead of Rest API.
Round 2 - Group Discussion 

Topics in AWS, RxJava, difference in approach between hibernate and MyBATIS. Kafka. JMeter based performance tests and other items listed in your resume.

Interview Preparation Tips

Topics to prepare for FIS Software Developer interview:
  • Core Java
  • Microservices
  • AWS
  • Kafka
  • MyBATIS
  • Angular
Interview preparation tips for other job seekers - Fidelity is a good company to work for. The interview process is fair with reasonable questions based on the skills listed in your resume. The feedback is done in less than a week.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Angular concepts
  • Q2. React native concept
  • Q3. Observable and promises
  • Q4. Directives concepts
  • Q5. Pipes concepts in angular
  • Ans. 

    Pipes in Angular transform data for display in templates, enhancing UI with formatting and filtering capabilities.

    • Pipes are simple functions that accept an input value and return a transformed value.

    • Angular provides built-in pipes like DatePipe, CurrencyPipe, and DecimalPipe for common transformations.

    • Custom pipes can be created using the @Pipe decorator, allowing for tailored data transformations.

    • Example of a built-in...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Max subsequence sum, 15 min

Round 2 - HR 

(2 Questions)

  • Q1. How to deal with difficult coworker
  • Q2. Toughest tech challenge I have faced
  • Ans. 

    I faced a significant challenge while optimizing a legacy system for performance and scalability under tight deadlines.

    • Identified bottlenecks in the existing codebase, which was written in an outdated framework.

    • Implemented caching strategies that reduced database load by 40%.

    • Refactored critical algorithms to improve time complexity from O(n^2) to O(n log n).

    • Collaborated with cross-functional teams to ensure smooth depl...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. OOPS pillers and explanation
  • Q2. Solid principles
  • Q3. If given CityName as parameter to method then get all the movies in that city. If given MovieName as parameter then get all the theaters with that movie
  • Ans. 

    Use conditional statements to determine whether the parameter is CityName or MovieName, then query the database accordingly.

    • Check if the parameter is CityName or MovieName

    • If CityName, query database for all movies in that city

    • If MovieName, query database for all theaters showing that movie

  • Answered by AI
  • Q4. Any certification?
  • Q5. LINQ and Extension method
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2023. 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 - Aptitude Test 

GENERAL APTITUDE QUESTIONS

Round 3 - Technical 

(2 Questions)

  • Q1. JAVA CODES FOR BEGINNER
  • Ans. 

    Java codes for beginners include basic syntax, data types, control structures, and object-oriented programming concepts.

    • Learn basic syntax and data types such as int, double, and String.

    • Understand control structures like if-else statements and loops.

    • Familiarize yourself with object-oriented programming concepts like classes and objects.

    • Practice coding exercises and projects to reinforce your learning.

    • Utilize online res...

  • Answered by AI
  • Q2. NODE FUNCTIONS FOR BINARY
  • Ans. 

    Node functions for binary are used to manipulate binary data in Node.js.

    • The Buffer class is used to handle binary data in Node.js.

    • The `toString()` method can be used to convert binary data to a string.

    • The `write()` method can be used to write binary data to a buffer.

    • The `read()` method can be used to read binary data from a buffer.

    • The `slice()` method can be used to extract a portion of a buffer.

    • The `concat()` method c...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

C, linux, general aptitude

Round 2 - Technical 

(4 Questions)

  • Q1. Basics of C , coding for swap, sort, prime number
  • Q2. Tell about you?
  • Q3. What is data type of auto?
  • Ans. 

    The data type of auto is determined by the value assigned to it at compile time.

    • The auto keyword in C++ is used to automatically deduce the data type of a variable based on its initializer.

    • The data type of auto can be any valid C++ type, including fundamental types, user-defined types, or even complex types like function pointers or lambda expressions.

    • The actual data type of auto is resolved by the compiler during comp...

  • Answered by AI
  • Q4. What work location prefered?

Skills evaluated in this interview

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 Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops concepts, solid principle, sqlcquery
  • Q2. Solid principle

I applied via LinkedIn and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1) General C# and Sql Questions.. some concepts in more depth
  • Q2. Joins, Union, Linq, Collections

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Prepared with basic C# questions like delegates, generics, events, interfaces, static classes with some examples

Sql Questions like types of Joins, Subquery, Union, view, stored proc, identity, indexes with some examples

What people are saying about FIS

View All
favorablelily
Verified Icon
6d
works at
FIS
Renegotiation post offer acceptance
Got an offer from EY and accepted it without second thought. While I was serving NP, got better offer from another organisation however I am not very much interested to join this org. Can I renegotiate on my offer with EY team? Will EY accept my request and offer me more salary ? Please suggest.
Got a question about FIS?
Ask anonymously on communities.

FIS Interview FAQs

How many rounds are there in FIS Software Developer interview?
FIS interview process usually has 1-2 rounds. The most common rounds in the FIS interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for FIS Software Developer 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 FIS. The most common topics and skills that interviewers at FIS expect are .NET, Analytical, CSS, Coding and Consulting.
What are the top questions asked in FIS Software Developer interview?

Some of the top questions asked at the FIS Software Developer interview -

  1. How you can handle exceptions in case of inherita...read more
  2. If given CityName as parameter to method then get all the movies in that city. ...read more
  3. What is data type of au...read more
How long is the FIS Software Developer interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 11 interview experiences

Difficulty level

Easy 14%
Moderate 86%

Duration

Less than 2 weeks 86%
2-4 weeks 14%
View more
Join FIS Advancing the way the world pays, banks and investments
FIS Software Developer Salary
based on 373 salaries
₹11.5 L/yr - ₹24.1 L/yr
73% more than the average Software Developer Salary in India
View more details

FIS Software Developer Reviews and Ratings

based on 50 reviews

3.7/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.1

Salary

3.4

Job security

3.9

Company culture

2.7

Promotions

3.5

Work satisfaction

Explore 50 Reviews and Ratings
Senior Software Engineer
2.7k salaries
unlock blur

₹12.5 L/yr - ₹25.7 L/yr

Software Engineer
1.8k salaries
unlock blur

₹7.4 L/yr - ₹13 L/yr

Lead Engineer
742 salaries
unlock blur

₹12.5 L/yr - ₹20.8 L/yr

Senior Leader Engineer
714 salaries
unlock blur

₹17.1 L/yr - ₹28.7 L/yr

Team Member
610 salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Explore more salaries
Compare FIS with

Paytm

3.2
Compare

PhonePe

4.0
Compare

Fiserv

2.9
Compare

KFintech

3.5
Compare
write
Share an Interview