Round 4 F2F: Problem Solving 1. Let's talk about Exceptions. What are exceptions and which exceptions you've actively used so far? 2. An ArrayIndexOutOfBound Exception has happened. How would you solve it? 3. If you're not allowed to touch the '<=' operator for ArrayIndexOutOfBound, what will you do to solve it? 4. What are checked and unchecked exceptions? 5. Given an array arr[] = {6, 0, -4, 4, 8}. Irrespective of the signs for the given integers. Find the count of unique values. The array may grow further. Ans: public static void main(String[] args) { int arr[] = {-6, 0, -4, 4, 8}; int len = arr.length; Set<Integer> mySet = new HashSet<Integer>(); for(int i=0; i<len; i++) { mySet.add(Math.abs(arr[i])); } System.out.println(mySet.size()); } 6. Why Visa?
Senior Qa Engineer Interview Questions
3,361 senior qa engineer interview questions shared by candidates
1) String and collections questions in Java 2) Basic selenium commands
Project related questions also they have asked
Describe your framework. It takes a lot of imagination to ask this question.
basic algorithm question, some question on REST
Two rounds of technical interview involved around each and every topic of Java, Selenium and . Questions from Strings, collections and exception handling, Actions class, git, maven and Jenkins
On Linux "kill -9 process id" What is the -9?
write test scenarios for WhatsApp
Write a program to find the longest palindrome in a given string
Know your craft and be ready to answer fundamentals and "use case scenarios" type of questions.
Viewing 2571 - 2580 interview questions