FIS Overview
- www.fisglobal.com
- Jacksonville, FL (US)
- 10000+ employees
- 1968
- Public
- Financial Transaction Processing
- ₹500 million to ₹1 billion per year
- Unknown
FIS Interview Questions: The most important part of preparing for an interview is practice. Knowing what job interview questions you might be asked is essential – that way, you can craft your answers well in advance and feel confident in your responses when the pressure is on.
Wouldn’t it be great if you knew exactly what interview questions are asked for the Test Engineer QA for Manual & Automation Positions? Unfortunately, we can’t read minds, but we’ll give you the next best thing: a list of previously asked FIS Global interview questions and answers.
Post On: | FIS Interview Questions |
Post Type: | Interview Questions |
Published On: | www.softwaretestingo.com |
Applicable For: | Freshers & Experience |
Get Updates: | Software Testingo Telegram Group |
We have tried to share some of the manual testing interview questions, selenium interview questions, and testing interview questions, but we recommend spending some quality time getting comfortable with what might be asked when you go for the FIS interview.
Still, we need your love and support to make this platform more helpful to our fellow testers. So please share your recent interview questions and experience with us. You Can share those details by connecting with us at softwaretestingo.com@gmail.com.
FIS Interview Questions
Company Name: FIS
Position: Automation testing
Company Location: Bangalore
Experience: 3.5 Yrs
Shared By: Aditi Kumari
No Of Rounds: 2
Updated on: 03.10.2022
Experience: It was good but a bit in detail.
Questions
- Tell me about yourself
- What are the different automation frameworks?
- Program: Write the code for data-driven
- What is the full form of XSSF?
- Write without Fileinputstream in the data-driven framework
- Code is written inside the Chromedriver()
- What is Selenium WebDriver Architecture?
- Program: Swap two strings with and without using an empty string
- Scenario: We have two web tables, and XPath is the same, but in the table, one particular web element is there. I want to extract that using existing XPath and write the whole XPath code
- Have You worked on database testing
- Program: Write code for Firefox driver invocation with set properties
- Write CSS selector for the child to parent ( it’s not possible in selenium).
- What is the explicit wait syntax for a web page to get loaded?
- How to highlight any option in selenium?
- How do we resolve merged conflict?
- What is the difference between git fetch and git pull?
- What is the difference between LinkedList and ArrayList?
- Program: Write a program to reverse each word on the string using the collection.
- Significance of 300 status code.
Tips: Be prepared. They are asking in detail questions.
FIS Global Interview Questions
Company Name: FIS Global
Position: QA
Company Location: Bangalore
Experience: 10 Yrs
Shared By: Shakuntala
No Of Rounds: 1
Updated on: 03.10.2022
The experience was very good. You need to be confident while explaining.
Questions:
- Introduce yourself
- Explain about project and work experience.
- Some Payment domains related questions
- Database questions –> Constraint, DDL, DML, TCL, different queries
- Unix commands –> How to delete the file content and replace the word from a file in Unix. How do you copy from one server to another?
- Selenium questions –> Data reading from Excel, how to connect to the database, fetch all drop-down elements, the difference between find element and find elements, how to handle an exception.
- Testing-related questions –> Test strategy, test plan, Jira life cycle.
- Explain the usage of Jira. How do you add test cases and defects?
- Worked on any other defect tracking tool? Do you know about HP ALM?
- Explain the framework used in your project.
- Program: How do you read data in the data-driven framework? Write a program to read data from an Excel sheet.
- Program: Write a program to check if a number is a palindrome.
- Explain how to get the 5th child window.
- What is polymorphism?
- Difference between API and web services.
- How did you write a test case using soap UI for API testing?
- Do you know about the testing framework? Write an XML to run scripts? List of API methods.
- Different annotations in testing in order.
Tips: Learn Unix commands from the basics. Learn how to edit files, copy files, replace, rename, etc. If you have worked on the database, there will not be any issues. The same goes for Selenium. They ask from a practical scenario.
FIS Global Interview Questions
Company Location: Bangalore, India
Updated on: 30.10.20201
A simple guideline for those who are going for an FIS global interview.
FIS Global Manual Interview Questions:
- What are the steps in the testing process?
- What are software testing techniques?
- What is the SDLC and STLC life cycle?
- What is a bug, and what is its Bug life cycle?
- What are severity and priority with examples?
FIS Global Automation Interview Questions:
- How do you handle dynamic changing elements?
- How do you handle dynamic Web tables in Selenium?
- What are the different types of navigation commands?
- What are the types of Assertions in selenium?
- How do you check if the element is visible or not in Selenium?
- The full oops concept in the automation framework
- What is an Agile process explain?
- What is the issue you are facing during the agile process?
- How do you report a bug?
- What is bug leakage
- Scenario: What do you do if you find a bug in the production?
- What is the layout in Jenkins?
- Does Jenkins require a local system for CI?
- How do you find the broken links on a webpage?
- How to check file size when uploading a document?
- How many bugs did you find in your project?
- How many sprints were deployed?
- What is the process you follow in your company to automate test cases?
- What coding standards did you follow in your framework?
FIS Global Java Interview Questions:
- What is exception handling in Java?
- Thread
- What is OOP in Java, for example?
- Some basic Java programs
- Strings
End:
Ask some questions from the interviewer related to your career.
FIS Bangalore 2020 Interview Questions
Date: Feb 2020
Location: Bengaluru
Mode: F2F
Source: Comment Section
I also went through the Interview this weekend for Selenium QA automation.
First Round:
It was a computer-based test. It had two sections.
- Selenium – Questions included Selenium RC, Windows handles, Proxy, and XPath.
- SQL – It had both SQL server and Mysql questions on join, aggregate, and normal SQL output.
2nd Round F2F Interview
- Explain the recent framework used.
- Highest salary by SQL query.
- String-based logical questions.
- Some basic manual questions.
- Agile scrum basic question.
- Core Java basic.
3rd Round F2F
- Explain the framework.
- String logic-related question.
- Collections
- Rest API – the difference between post, put and patch.
- What is the return type of implicit wait?
FIS Written Exam Questions: Selenium, SQL, Java
Consider the Following HTML Code snippet.
DEV | Development |
QA | Testing |
driver.findelement(by.xpath("//table/tr[1]/td")).gettext();
- The above statement returns QA
- The Above statement returns the Dev
- The XPath query is incorrect
- The Above statement returns Dev Development
What Exception comes when elements are not present in the HTML DOM?
- ElementNotVisibleException
- TimeoutException
- NoSuchElementException
- StaleElementReferenceException
In Selenium, which of the following is the valid select statement that selects a value from a drop-down element?
- selectByIndex()
- selectByValue()
- selectByText()
- All above
- Only 1 and 2
What is the method to click left of the mouse?
- contextClick()
- context_click()
- leftClick()
- none of above
Return type of drive.findElements() is __________.
Which feature of OOP is indicated by the following code
class student { int marks; } class topper: public student { int age; topper (int age) { this.age=age; } }
- Inheritance
- Polymorphism
- Inheritance and Polymorphism
- Encapsulation and Inheritance
The Output of the following fraction of the code
public class test { public static void main(String args[]) { String s1=new String("Hello"); String s2=new String("Hellow"); System.out.println(s1+s2); } }
- Hello
- Hellow
- Compilation Error
- Throws an exception
- None Of these
Find the names of those cities with temperatures and conditions that are either sunny or cloudy, but the temperature must be greater than 70.
- Select city,temperature,condition from weather where condition=”sunny” AND condition=”cloudy” or temperature>70;
- Select city,temperature,condition from weather where condition=”sunny” OR condition=”cloudy” OR temperature>70;
- Select city,temperature,condition from weather where condition=”sunny” OR condition=”cloudy” and temperature>70;
- Select city,temperature,condition from weather where condition=”sunny” and condition=”cloudy” and temperature>70;
Program: Write the below program (prefer collection concept), and find the max occurring number in an integer array.
Example: int[] a={2,2,2,2,2,3,3}, o/p-2,5
Interview Questions Link: Image1 || Image 2
About Fis Global Solutions
FIS is the world’s largest global provider dedicated to financial technology solutions. FIS empowers the financial world with software, services, consulting, and outsourcing solutions focused on retail and institutional banking, payments, asset and wealth management, risk and compliance, trade enablement, transaction processing, and record-keeping. FIS’ more than 52,000 worldwide employees are passionate about moving our clients’ businesses forward.
Headquartered in Jacksonville, Fla., It serves more than 20,000 clients in over 130 countries, and our technology powers billions of transactions annually that move over $9 trillion around the globe. FIS is a Fortune 500 company member of the Standard & Poor’s 500 Index.
We never lose sight of that and succeed only when our clients succeed. This drives our commitment to thought leadership, operational excellence, and innovation that champions our clients’ businesses and keeps them competitive in today’s dynamic and challenging industry environment. We help our clients transform disruption into opportunity, giving them the tools needed to thrive not just today but in tomorrow’s financial world.
To better understand how the company evolved into a world-renowned financial services technology leader, one needs to look back at the company’s history. The company was founded in 1968 as Systematics, which ALLTEL Information Services later acquired and then bought by title insurance giant Fidelity National Financial in 2003, who renamed it Fidelity Information Services (FIS). Over the next few years, FIS acquired several other financial technology firms, including Certegy in 2006, eFunds in 2007, and Metavante in 2009.
These acquisitions broadened its global reach, earned FIS a place on the fortune 500 listings, and positioned the company as the largest technology provider to the global financial industry.
In 2015, the company acquired Sungard, its largest acquisition to date. Sungard’s complementary offerings brought financial technology services into new markets, including education and the public sector, and added asset managers, traders, custodians, treasurers, third-party administrators, and clearing agents to the broader FIS client base.
This combination of organic and external growth has positioned FIS among the world’s leading technology providers for the financial services industry. Through the visionary leadership of its management and its philosophy of championing its clients’ success every day, FIS remains on a shortlist of providers capable of offering end-to-end solutions to financial institutions and retailers worldwide.
I also went through Interview this weekend for Selenium QA automation.
First round –
It was computer based test. It had 2 sections .
1. Selenium – questions were on Selenium RC , Windowhandles , Proxy , xpath.
2. SQL
It had both Sql server and Mysql questions on join , aggregate and normal sql output.
2nd round was f2f interview.
Explain recent framework used.
Highest salary by sql query.
String based logical questions .
Some basic manual question.
Agile scrum basic question.
Core Java basic .
3rd round f2f
Explain framework .
String logic related question .
Collections
Rest API – difference between post n put and patch.
What is return type of implicit wait .
hey Priya …do u know something about java position interview questions at fis?