How do you prioritize the task? When is the last time you missed the bug? What is your achievement? What you do if developers denies to fix of minor bug? How do you report the bug?
Senior Qa Interview Questions
4,480 senior qa interview questions shared by candidates
Questions related to classloader in java from QA i found irrelevant .
Nothing
Abou my experience in IT web application testing for past 8 years
How you logins in an application.
1) String and collections questions in Java 2) Basic selenium commands
1- Java-- all basic concepts, execptions, collections, Oops concepts etc. 2- Puzzles, scenario based based questions, Autoamtion framework, Log4J, 3- Program- non repeatable character in an array (unfortunately the interviewer itself dint know what is the result or the output of it. 4- SQL- all the joins. DML,DDL etc. 5- Manual- Test plan, test life cycle, strategy, defect life cycle etc.
See description of the interview process.
How did you deal with a conflict with your coworker?
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?
Viewing 3481 - 3490 interview questions