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

Updated 28 Sep 2022

FIS Sdet Interview Experiences

2 interviews found

Sdet Interview Questions & Answers

user image Anonymous

posted on 28 Sep 2022

I applied via LinkedIn and was interviewed in Aug 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 - One-on-one 

(2 Questions)

  • Q1. Easy Question good experience Best company Core java basics
  • Q2. Basic selenium , Testng

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company …………………….. best company to work with much

Sdet Interview Questions & Answers

user image Anonymous

posted on 10 Dec 2021

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Core Java , Collections , OOPS , Coding question related to String Manipulation , API testing, SQL queries , Selenium Framework, Cucumber , TestNG

Interview Preparation Tips

Interview preparation tips for other job seekers - Two technical rounds were conducted and both stretched to almost 1 hr . Overall ask is candidate should have good hands on experience in core java and automation tool like selenium

Sdet Interview Questions Asked at Other Companies

Q1. Given a M x N 2D array containing random alphabets and a function ... read more
asked in Amazon
Q2. what happen between, when you enter a URL into a browser address ... read more
asked in InMobi
Q3. In a line where words are separated by spaces, , and capitalize f ... read more
Q4. Given a circular linked list containing sorted elements (int valu ... read more
asked in Amazon
Q5. how will you check that each page of amazon.com is having its log ... read more

What people are saying about FIS

View All
a quality engineering team lead
2w
Which is better to join?
Boston Consulting Group
0%
Worldpay
0%
6 participants . poll closed
Got a question about FIS?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. WHAT IS OOPS, INHERITANCE, STATIC DYNAMIC BINDING
  • Ans. 

    OOPS is Object-Oriented Programming, Inheritance is the ability of a class to inherit properties and behavior from another class, Static Binding is resolved at compile time, Dynamic Binding is resolved at runtime.

    • OOPS stands for Object-Oriented Programming, which is a programming paradigm based on the concept of objects.

    • Inheritance is a feature in OOP that allows a class to inherit properties and behavior from another ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for PayU Payments Sdet interview:
  • Selenium

Sdet Interview Questions & Answers

PhonePe user image Anonymous

posted on 29 Aug 2024

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

(2 Questions)

  • Q1. JAVA String Anagram with O(n)
  • Q2. DSA Question Based on Linked List

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basic DSA well. String, Array, Hashing

Sdet Interview Questions & Answers

Paytm user image Anonymous

posted on 30 Nov 2024

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

I was interviewed in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Strings anagram
  • Q2. Array sorting and remove duplicate

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for java and backend api testing

Sdet Interview Questions & Answers

FNZ user image Anonymous

posted on 8 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions on resume api testing and around test models
Round 2 - Technical 

(1 Question)

  • Q1. Test cases identification, planning and UAT/system test examples

Sdet Interview Questions & Answers

Visa user image Anonymous

posted on 30 Sep 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Two questions on array sort the given array and find how many times a element occur

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
-

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How will you integrate selenium framework with jenkins
  • Ans. 

    Integrating Selenium framework with Jenkins involves setting up Jenkins job to run Selenium tests.

    • Install Jenkins on the server

    • Install necessary plugins like Selenium plugin

    • Create a Jenkins job for running Selenium tests

    • Configure the job to execute Selenium tests using the Selenium framework

    • Set up build triggers and post-build actions as needed

  • Answered by AI

Skills evaluated in this interview

Sdet Interview Questions & Answers

PhonePe user image Anonymous

posted on 29 Oct 2023

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

I applied via LinkedIn and was interviewed before Oct 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 - Coding Test 

Automation, Backend Automation, API Test Automation.

Round 3 - Coding Test 

Java, OOPS concepts. Interfaces, Inheritance

Round 4 - One-on-one 

(2 Questions)

  • Q1. Previous role Discussion
  • Q2. What was the role of yours in last company? Explain your projects in detials?

Interview Preparation Tips

Topics to prepare for PhonePe Sdet interview:
  • API Test Automation
  • SQL
  • Java
  • Rest AUssured
Interview preparation tips for other job seekers - Prepare your resume well

Sdet Interview Questions & Answers

Paytm user image Anjani Gupta

posted on 12 Oct 2023

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

I applied via LinkedIn and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. Swap two numbers without using a third integer.
  • Ans. 

    Swap two numbers without using a third integer

    • Use XOR operation to swap two numbers without using a third integer

    • Example: a = 5, b = 7. a = a XOR b, b = a XOR b, a = a XOR b

    • After swapping: a = 7, b = 5

  • Answered by AI
  • Q2. Overloading & Overriding
  • Q3. TestNG annotation
  • Q4. Jenkins Setup and how to configure a job and update the report to the team.
  • Ans. 

    Jenkins setup involves configuring jobs and updating reports for the team.

    • Install Jenkins on a server or local machine

    • Create a new job by selecting 'New Item' and choosing the job type

    • Configure the job by setting up build triggers, source code management, build steps, and post-build actions

    • Add plugins for reporting tools like JUnit or HTML Publisher to generate reports

    • Update the report by viewing the job's build histor...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Reverse a integer
  • Ans. 

    Reverse an integer by converting it to a string and then reversing the string

    • Convert the integer to a string

    • Reverse the string

    • Convert the reversed string back to an integer

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more coding

Skills evaluated in this interview

FIS Interview FAQs

How many rounds are there in FIS Sdet interview?
FIS interview process usually has 2 rounds. The most common rounds in the FIS interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in FIS Sdet interview?

Some of the top questions asked at the FIS Sdet interview -

  1. Questions on Core Java , Collections , OOPS , Coding question related to String...read more
  2. Easy Question good experience Best company Core java bas...read more
  3. Basic selenium , Tes...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 FIS interviews
Job Portal
Recruitment Consultant
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Join FIS Advancing the way the world pays, banks and investments

Sdet Interview Questions from Similar Companies

Paytm Sdet Interview Questions
3.3
 • 4 Interviews
TCS Sdet Interview Questions
3.7
 • 3 Interviews
PhonePe Sdet Interview Questions
4.0
 • 3 Interviews
Infosys Sdet Interview Questions
3.7
 • 2 Interviews
Visa Sdet Interview Questions
3.6
 • 1 Interview
FNZ Sdet Interview Questions
1.9
 • 1 Interview
View all
FIS Sdet Salary
based on 14 salaries
₹7 L/yr - ₹19.4 L/yr
19% less than the average Sdet Salary in India
View more details
Senior Software Engineer
2.7k salaries
unlock blur

₹7.8 L/yr - ₹29 L/yr

Software Engineer
1.6k salaries
unlock blur

₹4.1 L/yr - ₹15.9 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
635 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