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

Compare button icon Compare button icon Compare
3.9

based on 5.3k Reviews

Filter interviews by

FIS Testing Engineer Lead Interview Questions and Answers

Updated 4 Apr 2024

FIS Testing Engineer Lead Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. String related programs were asked.
Round 2 - Technical 

(1 Question)

  • Q1. It was a Techno Managerial round and Logical questions were asked.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview questions from similar companies

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

(2 Questions)

  • Q1. Write a Java Program to reverse a string
  • Ans. 

    Java program to reverse a string

    • Create a char array from the input string

    • Use two pointers to swap characters at opposite ends

    • Continue swapping until the pointers meet in the middle

  • Answered by AI
  • Q2. Write a program to find duplicate in given string and print the count of characters
  • Ans. 

    Program to find duplicates in a given string and print the count of characters

    • Iterate through each character in the string and store the count of each character in a hashmap

    • Print the characters with count greater than 1 to find duplicates

    • Handle both uppercase and lowercase characters separately if needed

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. API test cases, API workflow
  • Q2. Test cases for mobile recharge
  • Ans. 

    Test cases for mobile recharge feature

    • Verify user can successfully recharge their mobile with valid amount

    • Verify user receives confirmation message after successful recharge

    • Verify user cannot recharge with invalid amount

    • Verify user cannot recharge with insufficient balance

    • Verify user cannot recharge if network connection is lost

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain SOLID principle
  • Ans. 

    SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without aff...

  • Answered by AI
  • Q2. Memory Allocation in Java
  • Ans. 

    Memory allocation in Java is managed by the JVM using the heap and stack memory areas.

    • Java uses the heap memory for storing objects and the stack memory for storing method calls and local variables.

    • Memory allocation in Java is automatic and managed by the garbage collector.

    • Java provides the 'new' keyword to allocate memory for objects on the heap.

    • Primitive data types are stored on the stack, while objects are stored on

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Data structures and algorithms,2 questions were there one of array and 1 of string
  • Q2. 2 question of medium and low difficulty
Round 2 - One-on-one 

(1 Question)

  • Q1. Automation round based on resume

I applied via Indeed and was interviewed in Jun 2022. There were 2 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 

(2 Questions)

  • Q1. Manual and automation testing
  • Q2. Selenium and manual testing

Interview Preparation Tips

Topics to prepare for HighRadius Senior QA Engineer -Software Testing interview:
  • Manual and automation testing
Interview preparation tips for other job seekers - I have trained in livetech institute at manual testing and core java and also selenium well versed with SDLC and STLC and also agile methodology with defect bug life cycle

I was interviewed in Nov 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Started with the introduction.
Then there were two-three coding questions.
Some OS and DBMS concepts were asked.
Questions related to testing were also included.

  • Q1. Reverse the String

    You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

    For example:

     If the given string is: STR...
  • Ans. Optimal Solution
    • Traverse the string and swap the first character with the last character, the second character with the second last character and so on.
    • Basically, you need to swap the i-th character with the (N-i-1)-th character where N is the length of the string and 0-based indexing is considered.
    Space Complexity: O(1)Explanation:

    O(1).

     

    In the worst case, only constant extra space is required.

    Time Complexity: O(...
  • Answered by CodingNinjas
  • Q2. Number And Digits

    You are given a positive number ‘N.’ You need to find all the numbers such that the sum of digits of those numbers to the number itself is equal to ‘N.’

    For example:
    You are given ‘N’ a...
  • Ans. Brute Force

    In this approach, we iterate through the numbers from 1 to N. We will find the sum of its digits and add it to the integer itself for each number. Then, we check if the obtained sum is equal to N.

    We create a recursive function called sumOfDigits(num) that returns the sum of digits of the number num.

     

    Algorithm:

    • The function sumOfDigits(num) 
      • If num is equal to 0 return 0
      • Otherwise, return num % 10 + su...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This was quite a tough round that can be cleared only by practice and understanding the problem. They asked about the profile first, then questions related to testing, SDLC, and so on. And then, I was asked to write test cases for two to three problems. Writing a test case was a task in this round. The interview was a senior testing engineer and was very friendly and helpful also and answered all my queries related to work.

  • Q1. Technical Questions

    Test Cases for Paytm Wallet (at least 10)

    You are downloading a file in your system, write test cases for this situation (5-6 TEST CASES)

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indira Gandhi Delhi Technical University for Women. I applied for the job as Software Testing Engineer in NoidaEligibility criteria6.8 and above CGPA, Active and dead backlogs not allowedPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - OOPS, Data Structures and Algorithms, Operating System, Low-Level Design, DBMSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice question from every section (Arrays, String, Data Structures) 
Tip 2 : Practice question that required you to write test cases for a problem (as they judge you on your practical implementation)
Tip 3 : Practice low level designing questions (it indirectly helps you to write test cases )
Tip 4 : Choose your favorite Data Structure and practice well on it (as this is the most commonly asked question)

Application resume tips for other job seekers

Tip 1 : Have at least three projects in your resume (Include only those which you can explain and demonstrate)
Tip 2 : Include a column of "Position of Responsibility" in addition to your work experience and technicalities (it is impactful as it shows your extra activities apart from your regular curriculum)

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Should good programming skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always focus on coding round. Should must practice to create framework from scratch which will help E2E .
HR and onboarding process we be very smooth.

I was interviewed in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. Find duplicates in a string and count repeated letters
  • Ans. 

    Find duplicates in a string and count repeated letters

    • Iterate through each character in the string

    • Use a hash map to store the count of each character

    • If a character is already present in the hash map, increment its count

    • After iterating through the string, filter the hash map to get the duplicate characters and their counts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 techno managerial rounds followed by HR Round.
Questions were on java, collections, selenium and Jenkins.

Process took over a month.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Sep 2017. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What do you Expect from the Company? Answer is Utilization and Manager is God for Me.
  • Q2. Client Manager is Impressed with Confidence about Learning Attitude and Dedication at Work.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Based on the Projects and the Requirement in the Company. Answered 28 of 30 Questions with Confidence.

General Tips: Fiserv is the best place to work to improve your Managerial Skills with Learning Attitude.
Skills: Manual and Automation, Communication, Leadership, Presentation Skills
Duration: 1-4 weeks

FIS Interview FAQs

How many rounds are there in FIS Testing Engineer Lead interview?
FIS interview process usually has 3 rounds. The most common rounds in the FIS interview process are Technical and HR.
How to prepare for FIS Testing Engineer Lead 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 Manual Testing and QA Testing.
What are the top questions asked in FIS Testing Engineer Lead interview?

Some of the top questions asked at the FIS Testing Engineer Lead interview -

  1. It was a Techno Managerial round and Logical questions were ask...read more
  2. String related programs were ask...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 FIS interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Join FIS Advancing the way the world pays, banks and investments

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 782 Interviews
Paytm Interview Questions
3.3
 • 746 Interviews
PhonePe Interview Questions
4.0
 • 294 Interviews
View all
FIS Testing Engineer Lead Salary
based on 52 salaries
₹7.6 L/yr - ₹15.3 L/yr
9% less than the average Testing Engineer Lead Salary in India
View more details

FIS Testing Engineer Lead Reviews and Ratings

based on 5 reviews

3.9/5

Rating in categories

4.1

Skill development

4.2

Work-Life balance

3.3

Salary & Benefits

4.1

Job Security

3.6

Company culture

2.1

Promotions/Appraisal

3.4

Work Satisfaction

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

₹7 L/yr - ₹29 L/yr

Software Engineer
1.6k salaries
unlock blur

₹4.2 L/yr - ₹16 L/yr

Lead Engineer
681 salaries
unlock blur

₹7.3 L/yr - ₹26.4 L/yr

Team Member
675 salaries
unlock blur

₹1.5 L/yr - ₹6 L/yr

Senior Leader Engineer
634 salaries
unlock blur

₹9.9 L/yr - ₹30.5 L/yr

Explore more salaries
Compare FIS with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview