Qa apple Interview Questions
36K
Qa Apple interview questions shared by candidates
Do you believe automation is more important than manual QA?
3 Answers↳
I won't believe, both r important. we are doing documentation and writing test cases manually, then we are converting manual test cases into test scripts and executing them. It is the process of testing life cycle. Less
↳
In these sorts of interviews you really need to drill down and understand what the interviewer is looking for. A good way to simulate a real interview experience is to do a mock with one of the Workday QA Automation Engineer experts on Prepfully, rated super strongly on TrustPilot... prepfully.com/practice-interviews Less
↳
Your question is somewhat vague. When it comes to service tests then automation is more important; When it comes to graphic design manual is more important. when it comes to regression tests automation is more important than manual testing. Less

What would you do if management asks you to approve a release with critical defects?
2 Answers↳
Decline to release and ask if I can have time to fix the defects
↳
No, We should not release the application with critical defects. Make sure the management team how the impact of the critical defects in the application without fixing and quality of the product not guaranteed. Less

Hypothetical question: you have a team of ten software developers that have worked on a product for 5 years. They now have to develop a new version of this application but only have 3 months to develop and test it. What would the QA estimate be?
2 Answers↳
This was my favorite question as it completely illustrated how bad these guys were at interviewing. I began to ask the manager that asked the question for more information and he snapped back at me " You have all the information you need!" Really? He might as well have asked me how much it costs to build a house. Because the answer would be the same - "I need more info and detail in order to give you my estimate". Any QA worth their salt will asks tons of questions in order to understand what it is they are working on. In the end I told the panel that if I had worked on the product or similar products I would base my estimate on prior experience. If I had no prior experience I would research historical metrics from similar projects and also discuss those historical project actual development/test hours with other QA and developers to come up with an estimate. Less
↳
I said "Rather than answering with the standard 'I will need more information' 'lets make it less hypothetical. "'Before I can give you an answer I will need to gather more information from your people'. This gives the interviewer an out when they don't have any additional information, and you the chance to get the information you need" Converting from 'Hypothetical' to 'Real' helped make my answer stand out from other candidates. It also made it harder for the interviewer to return with the Hypothetical "you have all the information you need" Less


Tell me more about your experience in working with Six Sigma and Lean, please be specific and give examples with details and figures.
1 Answers↳
Too long to write, they did a great job making sure I was not just putting popular tag words on my resume to make me look more appealing. They do a great job of finding out the truth. Less

Describe my ability to work in a team environment.
1 Answers↳
I'm a synergistic person. I find ways to be more efficient and share what I learn with my coworkers. I explained that if I share what I know that made my job easier, then perhaps that coworker will remember me and share what they learn back in the future with me as well as with the entire corporate structure. This is synergy. Less


Have you had a defect that was found by a customer that should have been caught during the testing phase? If so, how did you handle the escaped defect.
1 Answers↳
I followed up with the customer and asked how they discovered the defect. I then determined what part of the troubleshooting process we missed that would have revealed the defect to us. Less

If you had a great idea to implement something new for a CA software product but management wouldn't take your word on it, how would you convince management to go along with your idea?
1 Answers↳
I would try to create a form of a prototype of said idea and present it along with taking ownership and compassion for the new feature. Less

In a typical sql query, what would happen when there are no bind variables? What happens when you put bind variables, does it help the performance or not? If so, how?
1 Answers↳
While writing queries in SQL always prefer using the Binding Variables. Here's why: Everytime a query is executed, it is first checked into the Shared Pool to see whether the query was executed before or not. If yes, then its execution plan is used again to execute the new query. If no, Hard Parse is done by the database. The query is parsed, working out the various execution paths and coming up with an optimal access plan before it can be executed. Hard parsing is very CPU intensive, and involves obtaining latches on key shared memory areas. So, lets take an example: Collapse | Copy Code select * from table1 where salary = 2000 Now if the value 2000 changes everytime with input from user, the query will never be unique and will be hard parsed everytime, generating extra CPU burden. Solution: Binding Variables Example: Collapse | Copy Code select * from table1 where salary = :salary Now this makes the statement unique everytime and just the values change in it, reducing the Hard Parse overhead. Every reference to a PL/SQL variable is in fact a binding variable. Less