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

Compare button icon Compare button icon Compare

Filter interviews by

FIS Interview Questions, Process, and Tips

Updated 7 Feb 2025

Top FIS Interview Questions and Answers

View all 197 questions

FIS Interview Experiences

Popular Designations

479 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024.Β There was 1 interview round.

Round 1 - TechnicalΒ 

(2 Questions)

  • Q1. Types of malware, port numbers, basics of SOC, basics of SIEM
  • Q2. Projects mentioned in the resume, OSI layers

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare CV, have command on basic networking, SIEM, SOC.
Even though the technicall interviwer was impressed with my answers, but still didnt received the offer πŸ€·πŸ»β€β™€οΈ

IT Security Analyst Interview Questions asked at other Companies

Q1.Β Are you familiar with nmap? Please write down the nmap syntax for full port TCP Scan.
View answer (1)

Associate Lead Interview Questions & Answers

user image Prasad Shinde

posted on 19 Jun 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-oneΒ 

(2 Questions)

  • Q1. What do you know about FIS
  • Ans. 

    FIS is a global financial services technology company.

    • FIS provides a wide range of financial services and solutions to clients worldwide.

    • The company offers banking and payment solutions, consulting services, and risk management tools.

    • FIS serves clients in over 130 countries and has over 55,000 employees.

    • FIS is a Fortune 500 company and is headquartered in Jacksonville, Florida.

  • Answered by AI
  • Q2. Tell me about previous job
Round 2 - One-on-oneΒ 

(2 Questions)

  • Q1. Corporate Action meaning
  • Ans. 

    Corporate Action refers to an event initiated by a publicly traded company that impacts its shareholders or securities.

    • Corporate actions can include stock splits, dividends, mergers, acquisitions, spin-offs, and rights issues.

    • These actions can affect the value of the company's stock and the overall investment portfolio of shareholders.

    • Investors need to stay informed about corporate actions to make informed decisions ab

  • Answered by AI
  • Q2. Derivatives and types

Associate Lead Interview Questions asked at other Companies

Q1.Β Difference between Money laundering and terrorist financing?
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in May 2024.Β There were 2 interview rounds.

Round 1 - Coding TestΒ 

MCQ type questions related to Front end, Back end and involved few coding questions in the MCQ format

Round 2 - TechnicalΒ 

(3 Questions)

  • Q1. How would you debug an application to solve a production defect that was raised?
  • Ans. 

    I would start by reproducing the issue, analyzing logs, checking code changes, and using debugging tools.

    • Reproduce the issue to understand the exact scenario where the defect occurs.

    • Analyze logs to identify any error messages or warnings related to the defect.

    • Check recent code changes to see if any recent modifications could have caused the defect.

    • Use debugging tools like breakpoints, logging, and profiling to trace th...

  • Answered by AI
  • Q2. What would you do if a defect can't be fixed?
  • Ans. 

    I would analyze the impact of the defect and explore alternative solutions.

    • Analyze the impact of the defect on the overall system functionality

    • Discuss with the team to brainstorm alternative solutions

    • Consider workarounds or temporary fixes while a permanent solution is being developed

  • Answered by AI
  • Q3. How would you implement breaking changes in the application?
  • Ans. 

    Breaking changes can be implemented by following a structured process to minimize impact on users.

    • Communicate the changes to stakeholders in advance

    • Provide detailed documentation on the changes and how to adapt to them

    • Implement versioning to allow users to choose when to adopt the changes

    • Use feature flags to gradually roll out the changes and monitor impact

    • Run thorough testing to ensure the changes do not introduce new

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are applying for Back end then it is expected to know Front end skills as well and vice versa.

Skills evaluated in this interview

Top FIS Senior Software Engineer Interview Questions and Answers

Q1.Β How would you debug an application to solve a production defect that was raised?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1.Β Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
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

Software Developer Interview Questions asked at other Companies

Q1.Β Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

FIS interview questions for popular designations

Β Software Engineer

Β (25)

Β IT Trainee

Β (23)

Β Senior Software Engineer

Β (19)

Β Software Developer

Β (11)

Β Lead Engineer

Β (9)

Β Business Analyst

Β (8)

Β Lead Analyst

Β (8)

Β Analyst

Β (7)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - TechnicalΒ 

(5 Questions)

  • Q1. Asked Angular related Questions
  • Q2. Observables Input Output ForJoin MergeMap Interceptors
  • Ans. 

    Observables are used in RxJS to handle asynchronous operations, input/output refers to data flow, ForJoin and MergeMap are operators, interceptors are used for handling HTTP requests.

    • Observables are used for handling asynchronous operations in RxJS

    • Input/Output refers to the flow of data into and out of a system

    • ForJoin is used to combine multiple observables into a single observable

    • MergeMap is an operator used to merge ...

  • Answered by AI
  • Q3. Why Observables over promise
  • Ans. 

    Observables provide a more flexible and powerful way to handle asynchronous data streams compared to promises.

    • Observables can handle multiple values over time, while promises can only handle a single value.

    • Observables can be cancelled, while promises are not cancellable.

    • Observables support operators for transforming, combining, and filtering data streams.

    • Observables provide better error handling capabilities compared t

  • Answered by AI
  • Q4. Behavior Subject vs SUbject
  • Ans. 

    Behavior Subject is a type of Subject in RxJS used for emitting values and managing subscriptions.

    • Behavior Subject is a type of Subject in RxJS.

    • It emits the most recent value to new subscribers.

    • It retains the last emitted value and emits it immediately upon subscription.

    • Example: const subject = new BehaviorSubject(0);

  • Answered by AI
  • Q5. Where to store token in angular
  • Ans. 

    Tokens in Angular can be stored in local storage, session storage, or as cookies.

    • Store tokens in local storage for persistent storage across browser sessions

    • Use session storage for tokens that should be cleared when the browser is closed

    • Store tokens as cookies for secure transmission over HTTPS

  • Answered by AI

Skills evaluated in this interview

Top FIS Senior Software Engineer Interview Questions and Answers

Q1.Β How would you debug an application to solve a production defect that was raised?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1.Β Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Get interview-ready with Top FIS Interview Questions

Risk Manager Interview Questions & Answers

user image Anonymous

posted on 11 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - TechnicalΒ 

(2 Questions)

  • Q1. Technical and scenario based questions
  • Q2. Risk management and compliance
Round 2 - TechnicalΒ 

(1 Question)

  • Q1. Business continuity plan, risk, mitigation

Risk Manager Interview Questions asked at other Companies

Q1.Β What do you mean by asset liability managemnt?
View answer (1)

Jobs at FIS

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Jaypee Institute of Information Technology, Noida and was interviewed in Mar 2024.Β There were 2 interview rounds.

Round 1 - Aptitude TestΒ 

Some aplitude MCQ and coding questions along with core subjects MCQ where asked

Round 2 - TechnicalΒ 

(5 Questions)

  • Q1. They were asking differently for everyone with some of them they asked DSA, SQL and with some of them they asked about cloud , Ai and some with deep project details that they mentioned in their resume
  • Q2. Good knowledge ofAI
  • Q3. Knowledge of cloud computing
  • Q4. DSA Question on simple MEX
  • Q5. SQl queries which was a little tough

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with practicing DSA along with good grasp ko knowledge in Trending fields too

Software Engineer Intern Trainee Interview Questions asked at other Companies

Q1.Β find average salary of employees from given table for each designation where employee age greater than 30
View answer (1)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024.Β There were 2 interview rounds.

Round 1 - Aptitude TestΒ 

More about the coding, Else if statements

Round 2 - TechnicalΒ 

(2 Questions)

  • Q1. Challenges faced in fraud department
  • Ans. 

    Challenges in fraud department include evolving fraud tactics, high volume of transactions, and balancing fraud prevention with customer experience.

    • Evolving fraud tactics require constant monitoring and updating of fraud detection systems.

    • High volume of transactions increases the likelihood of fraudulent activity going unnoticed.

    • Balancing fraud prevention measures with providing a seamless customer experience can be ch...

  • Answered by AI
  • Q2. Technical questions about the applications

Senior Fraud Analyst Interview Questions asked at other Companies

Q1.Β If the user would not get OTP to access the profile?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in May 2024.Β There were 3 interview rounds.

Round 1 - HRΒ 

(1 Question)

  • Q1. Introduction and my current role
Round 2 - One-on-oneΒ 

(1 Question)

  • Q1. About my job profile ops 1 round
Round 3 - One-on-oneΒ 

(1 Question)

  • Q1. Once again about my current role and my experience was asked

Interview Preparation Tips

Topics to prepare for FIS Senior Project Manager interview:
  • Tell about yourself,
  • Your current role
  • Why do you want to switch
Interview preparation tips for other job seekers - If its in your destiny you will get it otherwise keep searching

Senior Project Manager Interview Questions asked at other Companies

Q1.Β DESIGIN PROCEDURE :- DLC thickness 150mm. 1:- use M15 grade concrete,max aggregate cement ratio 12:1 2:-The minimum cement content 150kg per cum. If flayash is more than >20% the mini.mum cement content. 120kg pet cum 3:- The 5 no sample... read more
View answer (3)

UI Developer Interview Questions & Answers

user image Anonymous

posted on 13 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - TechnicalΒ 

(2 Questions)

  • Q1. They have asked Backed related question for a ui role.
  • Q2. Mostly project related question

UI Developer Interview Questions asked at other Companies

Q1.Β Create 10 no. of Checkboxes in javascript and on-checked checkboxes count should be show at below. as you will un-check the checkbox count should also change. so means to say checked checkbox count should be print.
View answer (1)

FIS Interview FAQs

How many rounds are there in FIS interview?
FIS interview process usually has 2-3 rounds. The most common rounds in the FIS interview process are Technical, HR and One-on-one Round.
How to prepare for FIS 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 Recruitment, Financial Services, SQL, Customer Service and Java.
What are the top questions asked in FIS interview?

Some of the top questions asked at the FIS interview -

  1. What is empathy and how to deal with the customer if customer irritate with you...read more
  2. What are the first concepts of Object-Oriented Programming (OOP), the SOLID pri...read more
  3. Which type of Job you expected like development oriented or Testing Orient...read more
How long is the FIS interview process?

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

Tell us how to improve this page.

FIS Interview Process

based on 328 interviews

Interview experience

4.1
Β Β 
Good
View more
Join FIS Advancing the way the world pays, banks and investments

Interview Questions from Similar Companies

TCS Interview Questions
3.7
Β β€’Β 10.4k Interviews
Infosys Interview Questions
3.6
Β β€’Β 7.6k Interviews
Wipro Interview Questions
3.7
Β β€’Β 5.6k Interviews
Tech Mahindra Interview Questions
3.5
Β β€’Β 3.8k Interviews
HCLTech Interview Questions
3.5
Β β€’Β 3.8k Interviews
LTIMindtree Interview Questions
3.8
Β β€’Β 3k Interviews
Mphasis Interview Questions
3.4
Β β€’Β 805 Interviews
Paytm Interview Questions
3.3
Β β€’Β 772 Interviews
Hexaware Technologies Interview Questions
3.6
Β β€’Β 720 Interviews
Cyient Interview Questions
3.7
Β β€’Β 283 Interviews
View all

FIS Reviews and Ratings

based on 5.5k reviews

3.9/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

3.6

Salary

3.8

Job security

3.8

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 5.5k Reviews and Ratings
Mainframe Testing Professional(API Testing)

Bangalore / Bengaluru

7-10 Yrs

Not Disclosed

System Administrator

Bangalore / Bengaluru

8-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
2.7k salaries
unlock blur

β‚Ή8 L/yr - β‚Ή30 L/yr

Software Engineer
1.7k salaries
unlock blur

β‚Ή4.1 L/yr - β‚Ή16 L/yr

Lead Engineer
686 salaries
unlock blur

β‚Ή7.3 L/yr - β‚Ή27.5 L/yr

Team Member
664 salaries
unlock blur

β‚Ή1.8 L/yr - β‚Ή6 L/yr

Senior Leader Engineer
644 salaries
unlock blur

β‚Ή9.9 L/yr - β‚Ή30.5 L/yr

Explore more salaries
Compare FIS with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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