FIS Bangalore 2020 Interview Questions
Company Name: FIS
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 2 sections.
- Selenium – Questions were on Selenium RC, Window handles, Proxy, XPath.
- SQL – It had both SQL server and Mysql questions on join, aggregate and normal SQL output.
2nd Round F2F Interview
- Explain 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 n put and patch.
- What is the return type of implicit wait?
FIS 2.5 Year Experience Interview Questions
- How many bugs did you find in your project?
- How many sprints deployed?
- What is the process you follow in your company to automate test cases
- What are the coding standards did you followed in your framework?
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 return QA
- The Above statement return Dev
- The XPath query is incorrect
- The Above statement returns Dev Development
What Exception comes when element not present in the HTML DOM?
- ElementNotVisibleException
- TimeoutException
- NoSuchElementException
- StaleElementReferenceException
In Selenium which of the following is valid select statement that select a value from a drop down element.
- selectByIndex()
- selectByValue()
- selectByText()
- All above
- Only 1 and 2
What is method to click left of 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 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 name of those cities with temperature and condition whose condition is 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;
Write a below program (prefer collection concept), find 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
FIS Selenium Automation and Manual Testing Interview Questions
- What is the layout in Jenkins
- Does Jenkins require a local system for CI?
- How to find the broken links on a webpage?
- How to check file size when uploading a document?
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 .