Qa Tester Interview Questions

Qa Tester Interview Questions

Un QA tester se encarga de asegurar la correcta funcionalidad de productos de software para los usuarios. Durante una entrevista para el puesto, puedes esperar que te hagan una combinación de preguntas técnicas y de comportamiento. Es posible que deseen evaluar tus habilidades técnicas e interpersonales, tu curiosidad y tu capacidad para trabajar en equipo.

Preguntas de entrevista más frecuentes para QA tester y cómo responderlas

Question 1

Pregunta n.º 1: ¿Qué habilidades concretas posees que podrían ayudarte en el puesto de QA tester?

How to answer
Respuesta recomendada: Para responder a esta pregunta de personalidad, identifica aquellas habilidades que sean relevantes —atención al detalle, precisión, motivación y capacidad de trabajo en equipo— y aporta ejemplos relevantes. Por ejemplo, para transmitir tu motivación y tu meticulosidad, podrías explicar cómo utilizarías el testing CRUD para detectar deficiencias estructurales en un software de gestión de una universidad destinado tramitar electrónicamente las matrículas.
Question 2

Pregunta n.º 2: ¿Cómo respondes a los desafíos y nuevas oportunidades de aprendizaje?

How to answer
Respuesta recomendada: Esta pregunta permite evaluar tu curiosidad, una habilidad fundamental para un QA tester. Identifica algunos logros o situaciones que demuestren tus ganas de aprender cosas nuevas. Puedes utilizar ejemplos de tu experiencia profesional o de voluntario.
Question 3

Pregunta n.º 3: ¿Cómo sueles abordar el trabajo colaborativo?

How to answer
Respuesta recomendada: Un QA tester debería poder usar sus habilidades colaborativas para mejorar los productos de software y proporcionar feedback constructivo a diseñadores de producto e ingenieros. Para demostrar que sabes trabajar en equipo, menciona casos en los que hayas podido lograr tu mejor trabajo a través de la colaboración.

50,715 qa tester interview questions shared by candidates

You are outside a room. Inside the room there are two light bulbs. One light bulb is on all the time, the other light bulb only turns on when you open the door. How do you determine which light bulb is on all the time?
avatar

QA Engineer

Interviewed at Palantir Technologies

3.7
Mar 1, 2011

You are outside a room. Inside the room there are two light bulbs. One light bulb is on all the time, the other light bulb only turns on when you open the door. How do you determine which light bulb is on all the time?

In a corridor with 100 lockers you pass the first time and open each locker. Then you pass the second time and you close each second locker. Subsequently, you pass the third time a toggle the state of each third locker, then you pass again each fourth, and so on... you repeat 100 times. How many lockers are open at the end.
avatar

Quality Analyst

Interviewed at Goldman Sachs

3.7
May 10, 2012

In a corridor with 100 lockers you pass the first time and open each locker. Then you pass the second time and you close each second locker. Subsequently, you pass the third time a toggle the state of each third locker, then you pass again each fourth, and so on... you repeat 100 times. How many lockers are open at the end.

1. Test Case Enumeration: Write test cases for taxi booking application for Ola or Uber. You are expected to write testcases covering different types of functional and non-functional testing areas 2. Problem Solving: Find the first occurance of a given number from the series which has the difference between the adjacent elements as 1. For Example {1, 0, -1,-2,-1,0,1,2,3} Note: Do not use Linear Search 3. Test Data Generation Write the test data for the function: int getSmallestIntegerPosition(int[] A) This method accepts as input integer array that is already sorted and rotated "n" number of items where n is less than the size of the array For Example: The test data can be {4,5,6,1} This was derived from {1, 4, 5,6} afer sorting and rotating the array for 3 times And output of the function returns the index of integer that has the smallest value Eg: {4,5,6,1}: the smallest value is 1 and its index is 3 Note: This method searches for the element and derives the position with an order of O(log(n)) 4. Debugging While using skype or google hangout application, you are not able to do a video chat, describe how you debug the problem considering different aspects of functional and non-functional testing 5. Scripting Find the nth consecutive occurence of a character in a given string. For example for the given input string of "Amazon is a great company as it haas AtoooZzz" and the output should be "o" 6. Consider a string "Hello Good Morning" it should print the sentence in reverse order output should be "Morning Good Hello" 7. Check two strings are anagram 8. Merge two dimesional Array Consider array1 ={{10, 15}, {30, 50}} array2 ={{20,40}, {5, 10}} Merged array should be sandwitched (array 1 should be sandwitched with array 2) also while merging array if value range is less than the previously added value then that value should not be added to the merged array Output should be {10, 20, 30, 40, 50} --> 15, 5 and 10 should not be added 9. Print middle character of a string. If middle value has even then print 2 characters Eg: Amazon -->print az 10. Search an element in array without using linear search technique 11. Write test cases for Amazon Prime functionality 12. Testcases enumeration and data preperation for Whatsapp messenger
avatar

Quality Assurance Engineer II

Interviewed at Amazon

3.5
Jul 26, 2017

1. Test Case Enumeration: Write test cases for taxi booking application for Ola or Uber. You are expected to write testcases covering different types of functional and non-functional testing areas 2. Problem Solving: Find the first occurance of a given number from the series which has the difference between the adjacent elements as 1. For Example {1, 0, -1,-2,-1,0,1,2,3} Note: Do not use Linear Search 3. Test Data Generation Write the test data for the function: int getSmallestIntegerPosition(int[] A) This method accepts as input integer array that is already sorted and rotated "n" number of items where n is less than the size of the array For Example: The test data can be {4,5,6,1} This was derived from {1, 4, 5,6} afer sorting and rotating the array for 3 times And output of the function returns the index of integer that has the smallest value Eg: {4,5,6,1}: the smallest value is 1 and its index is 3 Note: This method searches for the element and derives the position with an order of O(log(n)) 4. Debugging While using skype or google hangout application, you are not able to do a video chat, describe how you debug the problem considering different aspects of functional and non-functional testing 5. Scripting Find the nth consecutive occurence of a character in a given string. For example for the given input string of "Amazon is a great company as it haas AtoooZzz" and the output should be "o" 6. Consider a string "Hello Good Morning" it should print the sentence in reverse order output should be "Morning Good Hello" 7. Check two strings are anagram 8. Merge two dimesional Array Consider array1 ={{10, 15}, {30, 50}} array2 ={{20,40}, {5, 10}} Merged array should be sandwitched (array 1 should be sandwitched with array 2) also while merging array if value range is less than the previously added value then that value should not be added to the merged array Output should be {10, 20, 30, 40, 50} --> 15, 5 and 10 should not be added 9. Print middle character of a string. If middle value has even then print 2 characters Eg: Amazon -->print az 10. Search an element in array without using linear search technique 11. Write test cases for Amazon Prime functionality 12. Testcases enumeration and data preperation for Whatsapp messenger

Viewing 21 - 30 interview questions

Glassdoor has 50,715 interview questions and reports from Qa tester interviews. Prepare for your interview. Get hired. Love your job.