Preguntas de entrevista de Ingeniero de calidad senior
3 mil
Preguntas de entrevista para Ingeniero De Calidad Senior compartidas por los candidatosPrincipales preguntas de entrevista

Draw a bridge and you have three people trying to cross? Seriously>
12 respuestas↳
I actually had an interview with Clearleap yesterday and I can tell you that above comments are not true. Interview process was very professional. Problem solving questions were quite interesting and I enjoyed them! Menos
↳
Unfortunately, your response is quite immature and therefore I withdraw myself from this conversation. Menos
↳
4 people actually (you missed the requirement). Looks like you did not pay attention during the interview. These types of questions are designed to figure out your: a) Problem solving skills b) Creativity c) Ability to work under pressure And most of all to observe your thought process. But in your Senior QA Engineer role you should have know about that already, right? Menos

Explaim Mobile automation framework architecture
3 respuestas↳
A good work
↳
Platform developed by integrating varoius hardware and software resources and various tools and services based on a qualified set of set of assumptions. Menos
↳
An automation framework is a platform developed by integrating various hardware and software resources and various tools and services based on a qualified set of assumptions. It enables efficient design and development of automated test scripts and reliable analysis of issues for the system under test. Menos

DB query
3 respuestas↳
I tried rooftop slushie mentioned above and it was pretty helpful. I recommend it. Menos
↳
Hmm
↳
It's essential to demonstrate that you can really go deep... there are plenty of followup questions and (sometimes tangential) angles to explore. There's a lot of Senior QA Engineer experts who've worked at Visa, who provide this sort of practice through mock interviews. There's a whole list of them curated on Prepfully. prepfully.com/practice-interviews Menos

Why there are 4 Automation engineers in your team and not 2 or 1?
3 respuestas↳
Gave generic answer as its not in my hands
↳
Hi Can you pls specify questions asked in Technical Round -2 and Managerial round ? Menos
↳
Can you please tell more about technical test 1round

1. Techical Test (Programs with Java and selenium - set up connection and read data from table and used it in your code, selenium-select, etc) 2. Techical Interview 3. Techinical + logical Reasoning 4. Technical +Managerial 5. VP Round
3 respuestas↳
Did you got the call from HR ?
↳
Hi can you let me know kind of questions asked in round 2 and 3 ? Help would be much appreciated Menos
↳
80% Question i have answered well.Few of the logical questions i missed out.

Programming Question: Jay has N friends, there are M different type of tickets. Jay & his friend, each have some tickets ticket[i]. ticket[N] is the number of tickets Jay has. WAP to return the number of friends who's number of tickets are different from jay's ticket count with 'k'. input: 1. N - number of Jay's friends 2. M - different type of tickets 3. k - difference required 4. Array of tickets
2 respuestas↳
Yes, Partial test case passed.
↳
Answer in JS- Trying to remove the duplicate tickets for each person then compare the tickets to get the desired number k. And then get the number of such friends. Not comparing Jay's own tickets. const getFriendsCount = (N, M, k, ticketsArr) => { const uniqueTktsArr = ticketsArr.map(tktsArr => Array.from(new Set(tktsArr))) let friendsNum = 0 const jaysTickets = uniqueTktsArr[N] uniqueTktsArr.forEach((tktsArr, i) => { if (i === N) { return true } let match = 0 tktsArr.every(tkt => { if (jaysTickets.includes(tkt)) { if (++match === k) { friendsNum++ return false } } return true }) }) return friendsNum } Menos

Will your wife mind if you work all weekend?
2 respuestas↳
Very un-PC question but I answered it anyway.
↳
I would refuse to answer this question. It leaves me with a very poor impression of the company. First, they are asking to compromise your work-life balance. Second, they are asking about your marital status, which is illegal. Menos

Selenium , Java , Code Test , and Then Project Related .
2 respuestas↳
Be confident and should have Good Java Knowledge .
↳
Yes

Questions on manual testing process
2 respuestas↳
Introduce the procedure for manual testing and explain the different types of testing Menos
↳
Can you please elaborate on questions asked during all the rounds of interview?

Write a program to print all the palindromes in a given string
2 respuestas↳
google it
↳
Actually there's no correct answer for this in the whole Internet! This problem contains bunch of hidden traps. Menos