100+ Manual Testing Interview Questions _ ArtOfTesting
100+ Manual Testing Interview Questions _ ArtOfTesting
Menu
Prepare for your software testing interviews with our comprehensive list of over
100 manual testing interview questions with answers. These interview questions
are designed for both freshers and experienced.
You can click on the below two links to go to the respective sections for freshers and
experienced professionals. So, let’s begin.
Content
1. Manual Testing Interview Questions for Freshers
https://artoftesting.com/manual-testing-interview-questions 1/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Basically, it is used for ensuring the quality of software to the stakeholders of the
application.
3. Defects detected earlier phase of SDLC results in lesser cost and resource
utilization of correction.
https://artoftesting.com/manual-testing-interview-questions 2/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
1. After test case execution – The testing phase can be stopped when one complete
cycle of test cases is executed after the last known bug fix with the agreed-upon
value of pass-percentage
2. Once the testing deadline is met – Testing can be stopped after deadlines get
met with no high-priority issues left in the system.
3. Based on Mean Time Between Failure (MTBF) – MTBF is the time interval between
two inherent failures. Based on stakeholders’ decisions, if the MTBF is quite large, one
can stop the testing phase.
4. Based on code coverage value – The testing phase can be stopped when the
automated code coverage reaches a specific threshold value with sufficient pass
percentage and no critical bug.
Ques.4. What is Quality Assurance and what are the different activities involved
in Quality assurance?
Ans. Quality assurance is a process-driven approach that checks if the process of
developing the product is correct and conforming to all the standards. It is
considered a preventive measure. This is because it identifies the weakness in the
process to build software. It involves activities like document review, test case review,
walk-throughs, inspection, etc.
Ques.5. What is Quality Control and what are the different types of testing
involved in QC?
Ans. Quality control is a product-driven approach that checks that the developed
https://artoftesting.com/manual-testing-interview-questions 3/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
# Verification Validation
https://artoftesting.com/manual-testing-interview-questions 4/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 5/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Test planning – In this phase, the test plan strategy is defined, the estimation
of test effort is defined along with the automation strategy, and tool selection
is done.
Test Design and Analysis – Here, test cases are designed, test data is
prepared and automation scripts are implemented.
Test environment setup – A test environment closely simulating the real-
world environment is prepared.
Test execution – The test cases are prepared, bugs are reported and retested
once resolved.
Test closure and reporting – A test closure report is prepared to have the
final test results summary, learning, and test metrics.
Black-box testing – In black-box testing, the tester need not have any
knowledge of the internal architecture or implementation of the system. The
tester interacts with the system through the interface providing input and
validating the received output.
White box testing – In white box testing, the tester analyses the internal
architecture of the system as well as the quality of source code on different
https://artoftesting.com/manual-testing-interview-questions 6/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Gray box testing – In gray box testing, the tester has partial access to the
internal architecture of the system e.g. the tester may have access to the
design documents or database structure. This information helps the tester to
test the application better.
https://artoftesting.com/manual-testing-interview-questions 7/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 8/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 9/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 10/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
to check whether the corresponding output is as per the expected result or not. This
data is created based on the business requirements.
https://artoftesting.com/manual-testing-interview-questions 11/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 12/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Ques.33. Explain the bug life cycle or the different states of a bug.
Ans. A bug goes through the following phases in software development-
https://artoftesting.com/manual-testing-interview-questions 13/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Rejected/Not a bug – A bug lies in rejected state in case the developer feels
the bug is not genuine.
Deferred – A deferred bug is one whose fix gets deferred for some time(for
the next releases) based on the urgency and criticality of the bug.
Fixed – When a bug is resolved by the developer it is marked as fixed.
Test – When fixed the bug is assigned to the tester and during this time the
bug is marked as in Test.
Reopened – If the tester is not satisfied with the issue resolution the bug is
moved to the Reopened state.
Verified – After the Test phase, if the tester feels the bug is resolved, it is
marked as verified.
Closed – After the bug is verified, it is moved to Closed status.
1. Static Test Design Techniques – The test design techniques which involve
testing without executing the code. The various static test design techniques
can be further divided into two parts manual and using tools-
Manual static design techniques
Walkthrough
Informal reviews
Technical reviews
Audit
Inspection
Management review
Static design techniques using tools
https://artoftesting.com/manual-testing-interview-questions 14/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 15/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
technique. In equivalence class partitioning, a set of input data that defines different
test conditions are partitioned into logically similar groups such that using even a
single test data from the group for testing can be considered similar to using all the
other data in that group.
For example, for testing a Square program (a program that prints the square of a
number), the equivalence classes can be-
Set of Negative numbers, whole numbers, decimal numbers, sets of large numbers,
etc.
Decision tables are particularly helpful in designing test cases for complex business
scenarios involving the verification of applications with multiple combinations of
input.
The higher the test coverage, the more the part of the software gets covered by test
cases and hence, the more effective will be the testing.
https://artoftesting.com/manual-testing-interview-questions 18/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Statement testing – A white box testing technique in which the test scripts
are designed to execute the application’s code statements. Its coverage is
measured as the line of code or statements executed by test scripts.
https://artoftesting.com/manual-testing-interview-questions 19/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Ques.47. What are Statement testing and statement coverage in white box
testing?
Ans. Statement testing is a white box testing approach in which test scripts are
designed to execute code statements.
1. Unit Testing
2. Integration Testing
3. System Testing
4. Acceptance Testing
1. Big bang Integration Testing – In big bang integration testing, testing starts
only after all the modules are integrated.
https://artoftesting.com/manual-testing-interview-questions 21/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
cases, Stubs or dummy modules are used that simulate the working of modules by
providing a hard-coded or expected output based on the input values.
https://artoftesting.com/manual-testing-interview-questions 22/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 23/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
updated while exploring the system or executing test cases. Unlike scripted testing,
test design and execution go parallel in exploratory testing.
https://artoftesting.com/manual-testing-interview-questions 24/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 25/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 26/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 27/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Whereas, bug release is when a specific version of the software is released in the
market with some known bugs which are intended to get fixed in later versions.
These types of issues are of low priority and are mentioned in the release notes while
sharing with the end-users.
https://artoftesting.com/manual-testing-interview-questions 29/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 30/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 31/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Another difference between the two is – testing can be done without any internal
knowledge of software architecture. Whereas debugging requires knowledge of
software architecture and coding.
Also check–
👉 Agile vs Waterfall – Difference b/w agile and waterfall
👉 Agile interview questions – Top agile methodology interview
questions
1. Product Owner – The product owner owns the whole development of the
product, assigns tasks to the team, and acts as an interface between the scrum
https://artoftesting.com/manual-testing-interview-questions 32/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Whereas a masked defect is an existing defect that has not yet caused any failure
because another error has masked it or prevented it from getting discovered.
https://artoftesting.com/manual-testing-interview-questions 33/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Plan – Plan the objectives, goals, and initiatives which help to reach customer
satisfaction.
Do – It implements the plan into action. To serve the customer with better
quality and satisfaction it is necessary to have a good plan to execute.
Check – To check the progress of your plan which has been implemented. The
result will show how accurate the planning had been done.
https://artoftesting.com/manual-testing-interview-questions 34/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
In this type of testing, instead of following best practices, we follow what works best
for the project based on the skills, experience, and judgment of the testing team. For
details check – Context-driven methodology by James Bach
This concludes our post on more than 100 interview questions on software testing.
You can comment below and let us know, in case we have missed any frequently
asked manual testing interview questions.
For further preparation for interviews, you can also check, the most
commonly asked test scenarios here – Test Scenario Examples.
Kuldeep Rana
Kuldeep is the founder and lead author of ArtOfTesting. He is skilled in test
automation, performance testing, big data, and CI-CD. He brings his decade
of experience to his current role where he is dedicated to educating the QA
professionals. You can connect with him on LinkedIn.
Interview
QA Interview Questions
Selenium Interview Questions And Answers
https://artoftesting.com/manual-testing-interview-questions 35/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Sushil
February 19, 2020 at 6:48 am
Reply
Kuldeep Rana
February 19, 2020 at 11:11 am
Reply
Basava
July 23, 2022 at 12:26 am
sir vary vary usefull for exp interview thanks a lot sir
Reply
https://artoftesting.com/manual-testing-interview-questions 36/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Vignesh Sundaresan
July 14, 2022 at 8:03 am
Between Sushil FYI, Its ‘Quoted words’ not ‘Coated words’, Please correct
😀
Reply
Parveen Saini
November 5, 2020 at 11:11 pm
Great ?job to be very clear about manual testing concepts and for interview
preparation . Thank you Kuldeep
Reply
Meszooms
February 25, 2021 at 4:47 pm
🙂🙂🙂
Reply
https://artoftesting.com/manual-testing-interview-questions 37/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Pavan kumar
June 24, 2021 at 7:53 am
Awesome application, it’s very usefull for QA job aspirants. Great work.
Reply
Ishan
July 27, 2021 at 1:05 pm
Reply
Vinaya
November 22, 2021 at 4:45 pm
Reply
https://artoftesting.com/manual-testing-interview-questions 38/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
pragnya
July 12, 2022 at 3:51 pm
Thanks
your document is really helpful.
Reply
Nilesh Valkunde
July 20, 2022 at 3:25 pm
Reply
Pooja Singh
July 20, 2022 at 11:05 pm
Great work. Really appreciate your blog. Helped in refreshing all testing
concepts. Keep up the good work.
Reply
https://artoftesting.com/manual-testing-interview-questions 39/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Kunal Vaid
July 24, 2022 at 8:49 pm
Reply
sudhir markhele
July 26, 2022 at 12:55 pm
Reply
NamrataPatil
August 12, 2022 at 7:30 pm
short but sweet answers and nice style of representation really like it
Reply
https://artoftesting.com/manual-testing-interview-questions 40/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Leave a Comment
Name *
Email *
Save my name, email, and website in this browser for the next time I comment.
Post Comment
Interview Posts
Manual Testing
👉 Manual Testing Interview
👉 Test Scenario Examples
👉 100 Types of Testing
Agile
👉 Agile Interview Questions
Automation Testing
👉 Selenium Interview Questions
https://artoftesting.com/manual-testing-interview-questions 41/42
1/1/23, 12:07 PM 100+ Manual Testing Interview Questions | ArtOfTesting
Database – SQL
👉 SQL Queries for Interviews
👉 DBMS Interviews Questions
👉 SQL Joins Interviews
Performance Testing
👉 JMeter Interview Questions
Linux
👉 Linux Interview Questions
©2022 ArtOfTesting
https://artoftesting.com/manual-testing-interview-questions 42/42