main_bg

Manual Testing Interview Questions

Explore the world of manual testing with 'Manual Testing Interview Questions.' This blog is your essential guide for preparing for manual testing-related interviews, featuring a comprehensive collection of questions and detailed answers. Whether you're a QA engineer, a software tester, or a testing enthusiast, our resource covers manual testing methodologies, test case design, bug tracking, and best practices. Prepare with confidence and discover the art of ensuring software quality through meticulous manual testing.

1. What is Manual Testing?

Manual testing is the process of manually checking software for defects. Testers follow predefined test cases to ensure the application behaves as expected.

2. What is the difference between Verification and Validation?

Verification ensures that the product is designed correctly, while validation ensures that the product meets the customer's requirements.

3. What are the advantages and Disadvantages of Manual Testing?

Advantages of Manual Testing 

  • Preferable for products with a short life cycle.
  • Saves time, money, and resources.
  • Ensure the error-free product.
  • Usable for exploratory testing, ad hoc testing, and usability testing.
  • No need to change the entire code to make minor changes. 
  • Get accurate user interface feedback.  
  • Ability to handle difficult use case situations in a better way. 
  • GUI testing can be done accurately.
  • Highly reliable. 
  • Make user-friendliness better. 
  • Easy to learn for new testers.

Disadvantages of Manual Testing

  • Not suitable for time-bounded projects and large organizations  
  • More prone to human errors and mistakes 
  • Less efficient as the choice of recording the testing process is not available 
  • Less Reliable 
  • Regression testing is time-consuming 
  • Does not cover all the aspects of testing 
  • Load testing and performance testing can be performed manually 
  • More expensive in the long run process

4. Who is a manual tester? Write its roles and responsibilities.

The manual tester is a professional who conducts quality checks on software applications without using automation tools or scripting. In essence, the speciality involves manually checking software for errors and fixing them. Manual testers must have the appropriate skills and be able to meet the company's requirements.

Manual Tester Roles and Responsibilities

  • Analyzing client requirements.
  • Reviewing written code for compliance with project specifications.
  • Creating a test environment for executing test cases.
  • Establishing quality assurance strategies and organizing phased testing.
  • Organizing and conducting review meetings.
  • Executing and analyzing test cases.
  • Detecting and fixing bugs.
  • Monitor system errors and discuss them with colleagues.
  • Keeping in touch with the test manager, etc.

5. In order to perform manual testing, what skills are required?

The following are the important manual testing skills to acquire:

  • Detail-oriented and able to report test results in a professional manner.
  • A strong analytical ability.
  • Ability to perform technical testing.
  • Familiarity with Agile methodologies.
  • Plan and track the testing process.
  • Knowledge of SDLC, STLC, SQL, and manual concepts.
  • An understanding of test management tools, test tracking tools, and testing techniques.

6. What is test coverage?

Test coverage is a metric that indicates how much of the source code is covered by the tests, allowing the tester to verify the quality of their testing. Testers can use it to determine whether they're testing everything they're supposed to. Depending on the way people approach testing, test coverage can mean different things to different people.

  • Product: It means looking at test coverage to answer the question: Which features or areas of the software do your tests cover?
  • Requirements: The software might work well, but it's not useful to the customer if it doesn't satisfy their needs. Requirements coverage indicates how many of the requirements are tested.
  • Source Code: This is usually a developer's domain and is a white-box testing technique. The developer can check how much of their source code is covered by the unit tests.

7. Name some methods that can be used in code coverage.

Code coverage is a software testing metric that measures how many blocks, lines, or arcs of code are executed when a test suite runs. Code coverage can be determined by several methods, including:

  • Statement Coverage.
  • Decision Coverage.
  • Branch Coverage.
  • Toggle Coverage.

8. Define Latent Defect.

Latent defect, as the name suggests, is a type of defect or bug which has been in the software system for a long time but is discovered now. A latent defect is an existing defect that can be found effectively with inspections. It usually remains hidden or dormant and is a low-priority defect.

9. Name some attributes of the test case. 

There are various attributes of test cases that make them more reliable, clear, and concise, avoiding any sort of redundancy. Some of them are given below: 

  • Test Case Id: Unique identifier of the test case.
  • Test Summary: One-liner summary of the test case.
  • Description: Detailed description of the test case.
  • Prerequisite or pre-condition: Set of conditions to be followed before implementing the test steps.
  • Test Steps: Detailed steps for performing test cases.
  • Test Data: Test data value used in the test case.
  • Expected Result: Estimated result to pass the test.
  • Actual Result: Actual result after executing the test steps.
  • Test Result: Status of the test execution (Pass or Fail).
  • Automation Status: Identifier for automation.
  • Date: Test execution date.
  • Executed By: Person name executing the test case.

10. What is UAT (User Acceptance Testing)?

A user acceptance test, also known as an end-user test, is a testing methodology undertaken by the client or end-user to approve the production release. As the last step in the SDLC, it takes place only after testing the software thoroughly. This tool is primarily used to validate end-to-end business processes. It verifies whether or not the developed software is ready to float into the market.

11. Explain Test Driver and Test Stub. 

A test driver and a test stub are both types of test harnesses that simulate an environment for testing a module or component. Both are dummy modules designed specifically for testing. 

  • Test stubs: A test stub is used in a top-down testing approach and allows testing of the upper levels of code when the lower code levels have not been developed yet. It serves as a 'called program' when subprograms are being developed. 
  • Test drivers: A test driver is used in a bottom-up testing approach and allows testing of the lower levels of the code when the upper code levels have not been developed yet. It serves as a 'called program' when main programs are being developed.

12. What is the importance of Localization Testing?

In localization testing, a software product is tested to ensure whether it offers full functionality and usability within a specific locale. Simply, it verifies the content's accuracy and suitability. In addition to linguistics, it addresses traditions, common herd behaviour, and other similar factors. Generally, it deals with the application's functionality and GUI.

13. What do you mean by Baseline Testing and Benchmark testing?

  • Baseline Testing: It is a type of non-functional testing in which a set of tests are run to capture performance information. Using this gathered information, we can make required changes in the application and ultimately improve the performance and capabilities of the application. Generally, it refers to a benchmark that is used as a starting point for new works. This testing uncovers and resolves many errors.
  • Benchmark Testing: It is a type of testing that involves both the developers and DBAs (Database Administrators) to determine current performance information. Using this information, one can improve the performance of the same by matching it with the benchmarks (industry standards). Its main objective is to compare the present and future software releases with their specific benchmark.

14. Explain Configuration Testing.

Configuration testing is a software testing technique that is used to evaluate the configurational requirements of the software. It discovers the optimal configuration of the system under which the application performs at its best, therefore configuration testing is considered important. It also helps in identifying and resolving any compatibility issues.

15. Name two parameters that can be useful to check the quality of test execution.

Two parameters required to check the quality of test execution include: 

  • Defect leakage ratio: It represents the ratio of total potential rejections to the total overall production.
  • Defect reject ratio: It represents the ratio of total rejections to the total overall production.

16. What is API testing?

An API (Application Programming Interface) test involves testing API directly and as part of an integration test to ensure they meet reliable, functional, performance, and security requirements. Due to the lack of a GUI, APIs are tested at the message layer. The tester writes code that makes an API request to the server that provides the API, provides the required inputs, collects the output from the response, and matches the actual output with the expected output.

API testing primarily concerns the business logic of the software that’s exposing the API. It does not involve the look and feel, accessibility, or usability of the software. API testing can be automated to make it repeatable and reproducible each time they run.

17. Explain use-case testing.

Use-case testing is basically a technique for developers and testers to identify test cases that exercise the entire system right from the very beginning to the very end of each transaction. Generally, it is part of black-box testing, which is used to develop tests or systems that achieve acceptable performance levels.

18. Explain bugs, defects, and errors.

  • Error: The error occurs when there is a programming mistake in the code that prevents the program from executing or compiling.
  • Defect: A defect is any variation between the actual result and the expected result determined by a tester or developer. Defects are typically detected after the product enters production and are resolved only during the development phase.
  • Bug: A software bug is detected during the testing phase as a fault or mismatch. This affects the functionality and performance of the software.

19. State the difference between bug leakage and bug release.

Bug leakage and bug release differ in the following ways:

Bug Leakage Bug Release 
Bug leakage refers to a defect that exists during testing yet is not discovered by the tester but is eventually discovered by the end-user. When a piece of software is released with a known bug(s) or defect(s), it is termed a bug release.
It is usually a high priority/severity bug. It is not a high priority/severity bug.
The bugs need to be addressed immediately and resolved as soon as possible. Software companies do this when they can afford to release software with bugs, but cannot afford to fix them in that version.

20. What do you mean by Critical bug?

The term critical bug refers to a bug that affects the majority of an application's functionality. When a critical defect occurs, testing cannot proceed until the defect is fixed. These block the functionality of an entire system or module. An application returning a server error message after an attempt to log in is an example of a critical defect.

21. What do you mean by Data flow testing?

Data flow testing involves analyzing the flow of data within a program. It is a type of structural testing. It is possible, thus, for a programmer to perform various tests on data values and variables. This method provides a way to identify the variables that are used at every stage of the program's control flow. It helps us in the following ways: 

  • Eliminate or remove variables that are never used after being declared.
  • Pinpoint variables that are used but never declared.
  • Deallocate variable before it is used.
  • Pinpoint variables that are defined multiple times before it is used.

22. What are the differences between manual and automated testing?

Manual and automated testing differ in the following ways:

Manual Testing Automated Testing
A human tester tests the software by manually running the test cases and observing and comparing the actual and expected outputs.  A tester or a programmer uses scripts and tools that execute the software and compares the actual and expected outputs. 
A manual test cannot be reproducible and repeated.  Automated testing can be consistently reproduced and repeated since it is programmed. Testers can run it as many times as they want. 
It is easy for testers to test new features manually, without much configuration or setup. Automated testing requires an initial investment in creating tests and preparing a testing environment. 
A manual test can help identify bugs in the user interface or accessibility issues. The automated testing method is more effective at catching bugs that humans would miss, such as software bugs or errors in business logic. 
Tests conducted manually are prone to human error and take a long time.  Compared to manual testing, automated testing is more reliable since there is no human involvement involved (apart from writing tests). It is significantly faster than manual testing. 

23. What is the term ‘quality’ mean when testing?

In general, quality software is usually free of bugs, is delivered on time and on budget, meets most of the requirements and/or expectations, and is easy to maintain. However, 'quality' is a subjective concept. A lot depends on whom the "customer" is as well as the extent to which they are influential in general. For instance, a user may define quality as user-friendliness and bug-free while an accounting department might define quality as profits.

24. What is the role of documentation in manual testing?

Effective software testing relies heavily on documentation. Documentation should include details such as requirements specifications, business rules, configurations, designs, test plans, code changes, test cases, bug reports, inspection reports, user manuals, etc. As part of software testing, the following documentation artifacts are commonly applied:

  • Test Plan: It is essentially a dynamic document controlled and monitored by the testing manager. A well-written test plan that describes the scope and activities of software testing is crucial for the success of a testing project. In essence, it serves as a blueprint for all aspects of the testing process, such as what, when, how, and more.
  • Test Scenario: A test scenario is a detailed description of a set of test cases or use cases. It involves testing a software application from the end user's perspective. It is usually the basis for constructing lower-level test cases or use cases. The test scenario can also be referred to as the test condition or the testing possibility. Taking a look at it will help you understand what we need to test.
  • Test Case: As the name implies, a test case is a document that contains test data, expected results, preconditions, and postconditions. The purpose of this document is to ensure the software product meets the specific requirements for a specific test scenario. Manual testing involves executing test cases manually by a tester without relying on automated tools. In the process of developing test cases, it is possible to identify loopholes in the specifications.
  • Traceability Matrix: This is a document, usually contained in a form table, that illustrates the relationship between requirements and other project artifacts from start to finish. To put it simply, it maps customer requirements to test cases.

25. Explain RTM (Requirement Traceability Matrix).

The RTM (Requirements Traceability Matrix) is defined as a tool used to identify and track the requirements and deliverables of a project. This is accomplished by establishing a thread for each component.  In addition, it manages the overall requirements of the project. There is nothing complicated about this method, and anyone can do it.

RTMs come in many forms. A test matrix, for example, proves that tests were conducted. Additionally, it can be used during the software development process to identify issues and requirements.

26. What is the importance of agile testing?

The agile testing process involves software testing that adheres to agile software development principles. The software is evaluated from the customer's perspective. This software development practice involves frequent, automated testing of new code and the immediate fixing of defects as soon as they are discovered. Each feature is tested as it is developed. Among its advantages are: 

  • All testers and developers can work together, boosting performance.
  • Each feature is tested as it is developed. 
  • Ensures a high-quality product that meets customer expectations. 
  • Reduces costs and saves time.
  • Highly adaptable and flexible. 
  • Assists developers with releasing software as soon as possible and improves product quality.

27. What is the difference between Regression and Retesting?

  • Regression Testing: Regression testing, also known as generic testing, revolves around re-running functional and non-functional tests. It is especially done to ensure whether previously developed and tested software still performs the same after a change or not. It can be performed either manually or using automated tests
  • Re-testing: Re-testing, also known as planned testing, is used for specific bugs after it has been fixed by the developers. Re-testing is performed to check the scenario under the same environmental conditions after detection has been fixed. 

Regression vs Retesting

Regression Retesting 
It is performed to make sure that the changes haven't affected the unchanged part.  This is done to ensure that the test cases which were filed during the last execution are passed after the detected bugs have been fixed by developers. 
It is not carried out to fix specific detects.  Usually, it is based on fixing defects. 
It is only the previous version functionality centric.  It is current or previous version functionality centric.
It can be performed parallel with retesting.  It is needed to perform before regression testing. 
It does not include the verification of bugs.  It includes the verification of bugs. 
In this type of testing, test cases can be automated and the testing style is generic. In this type of testing, test cases cannot be automated and the testing is done in a planned manner. 
It is only used for passed test cases.  It is only used for failed test cases.

28. What is System testing and Unit Testing? Write the difference between them.

  • System Testing: It is a typical black box testing technique that is performed in a complete and fully integrated system to evaluate the system’s compliance with its specific requirements. It must investigate both functional requirements and non-functional requirements. Generally, it is performed by both testers and developers.
  • Unit Testing: In unit testing, each component of the software is individually tested. Generally, unit testing is performed by developers. Those systems that have a lot of interdependencies between their modules cannot be tested by unit testing.

System vs Integration Testing

System Testing Unit Testing 
The system testing method involves treating each module as a separate target for testing, and integrating the modules after each has been tested. The purpose of unit testing is to test only one module at a time, rather than the integrated version of the application.
Generally, when it comes to unit testing, a single module testing approach is taken. For System test cases, it includes both top-down approach testing and bottom-up approach testing with all modules in integrated mode.
It focuses on system validation.   It focuses on functional verification.
It usually follows the requirements specification. It usually follows the specification of modules.
It is also known as black-box testing. It is also known as white-box testing.
It is a low-level test as compared to unit testing. It is a high-level test as compared to system testing.

30. What is Test Harness and Test Closure?

Test Harness: Test harness, also known as the automated test framework, is a collection of software and test data required to unit test software modules during development. It is mostly used by the developers and helps in the automation and execution of unit test cases. It generally includes two main parts as given below: 

  • Test execution engine 
  • Test script repository

Test Closure: Test closure is basically a document that provides the summary of all the tests that are performed during SDLC. It gives full detailed analysis reports of the bugs that are discovered and removed. It is usually performed prior to the end of the testing process.

31. Explain different stages of the defect life cycle.

The defect life cycle consists of the following stages:

  • New: Potential defect that hasn't been validated.
  • Assigned: Assigned to a team for resolution, but not yet resolved.
  • Active: Developers are currently investigating the defect and addressing it. Deferred or Rejected are the two possible outcomes at this stage.
  • Test: The defect has been fixed and can be tested.
  • Verified: The defect has been retested and the results have been verified by QA.
  • Closed: Defect in its final state, which can be closed after retesting by QA or when considered duplicate or not a defect.
  • Reopened: QA reopens/reactivates a defect when it has not been fixed.
  • Deferred: A defect that can't be addressed in the current cycle is deferred to a future release.
  • Rejected: There are three common reasons for rejecting a defect: duplicate, not a defect, and not reproducible.

32. What do you mean by pesticide paradox?  What you can do to overcome it.

The pesticide paradox is basically a phenomenon where the more one tests the software, the more it becomes immune to its tests. To overcome this, testers should always find new strategies, approaches, and test cases, so that they can identify bugs and resolve them. The following methods can be used to prevent the pesticide paradox:

  • Create a new set of test cases for different components of the software.
  • Adding new test cases to the existing test cases.

The use of these methods can lead to finding more defects in the areas where defect levels have declined.

33. When to choose manual testing over automation testing and vice versa?

Choosing Manual Testing over Automation Testing

  • When test cases need to be run for a short duration of time (once or twice). 
  • When one needs to perform exploratory testing, usability testing, or ad-hoc testing.
  • When assessing an application's user-friendliness.
  • Whenever flexibility is needed. 
  • Whenever one wants to better manage complex situations/scenarios.

Choosing Automation Testing over Manual Testing

  • Whenever test cases have to be run repeatedly over a long period of time. 
  • When one needs to perform performance testing, load testing, or regression testing. 
  • Whenever one wishes to record the testing process.
  • When one has a limited amount of time to complete the testing phase. 
  • When tests are needed to be executed in a standard runtime environment. 
  • When tests involve repetitive steps. 
  • When there are multiple and quick deployments for the product, the manual becomes very time taking and redundant.

34. In what way will you determine when to stop testing?

Testing can be quite challenging when it comes to determining when to stop. In the modern world, many software applications are so complex and run in so many interdependent environments, that complete testing is impossible. The following factors are often considered when deciding when to stop testing:

  • If deadlines are met (release deadlines, testing deadlines, etc.) and there are no high-priority issues left in the system.
  • Completion of test cases with a certain passing percentage.
  • As soon as the test budget is depleted.
  • The mean time between two inherent failures is known as the MTBF (Mean Time Between Failure). When the MTBF is quite high, the testing phase may be stopped depending on stakeholder decisions.
  • As soon as the automated code coverage meets a specified threshold value and there are no critical bugs.
  • If the bug rate drops below a certain level.
  • After the Beta or Alpha testing period has ended.

35. Can 100% testing coverage be achieved? How do you ensure test coverage?

Testing a product 100% is considered impossible. You can, however, get closer to your goal by following the steps below.

  • Developing an effective testing strategy.
  • Prepare a checklist for all activities related to testing.
  • Establish a priority list for the application's critical areas.
  • List all application requirements.
  • Identify the risks associated with the application.
  • Utilize automated testing.

36. System testing can be done at any stage. Yes or No?

No, system testing cannot be conducted at any stage of the development process. In system testing, all components of the software are tested together to ensure that the overall product meets the specified specifications. Therefore, system testing cannot take place at any stage; instead, it must be done only after all modules or units are in place and are working properly, but before User Acceptance Testing (UAT).

37. If proper documentation is not available for testing, what steps will you take to overcome the challenge?

QAs should refer to the following references if they cannot find standard documents such as System Requirements Specification or Feature Description Document.

  • Screenshots
  • Wireframes
  • A previous version of the application.

In addition, having discussions with the business analyst and the developer is another reliable method. This is helpful in resolving doubts and bringing clarity to requirements. The emails exchanged could also serve as testing references.

Another option for verifying the application's functionality is to perform smoke testing. This would expose a few very basic bugs in the application. In cases where none of the above options work, we can simply use our previous experience to test the software application.

38. What are some best practices that you should follow when writing test cases?

When writing test cases, you should follow the following guidelines:

  • Assess the project's risks and deadlines before planning and prioritizing test cases and write accordingly.
  • Keep the 80/20 rule in mind. For the best coverage of your application, 20% of your tests should cover 80% of its functionality.
  • Make sure you don't try to test all cases at once, but rather improvise them as you go.
  • Create a list of your test cases and categorize them according to business scenarios and functionality.
  • Modularity and granularity are important when designing test cases.
  • Provide test cases in a way that can easily be understood by others and modified if necessary.
  • Remember that the software designed is ultimately for customers, so keep their requirements in mind.
  • Manage a stable release cycle by using a test management tool.
  • Keep track of your test cases on a regular basis. Test cases must be unique and irrelevant or duplicated must be removed.

39. When the requirements are still in flux, what is the best way to test a product?

For some products, a requirement stack is not available. It may require considerable effort to identify if an application has unexpected functionality, which indicates a deeper problem with the software development process. Removing functionality that isn't necessary for the purpose of the application is a good idea. Otherwise, create a test plan based on the assumptions you've made about the product. But, it is important that you thoroughly document all assumptions in the test plan.

40. What makes boundary value analysis a good method for providing test cases?

A boundary value analysis is defined as a software testing technique that uses the boundary values of equivalence classes as input to test cases. Black box testing uses boundary value analysis as one of the most commonly used case design techniques.  

In boundary value analysis, values at the boundaries are included in test cases. It is generally true that there are more errors at the boundaries of an input domain than in its center, which makes boundary value analysis an excellent method for generating test cases. In boundary value analysis, values at the boundaries are included in test cases. When the input lies within the boundary range, it is a positive test, but if it lies outside, it is a negative test. The values may include the maximum, the minimum, the inside edge, the outside edge, the typical value or the error value.

Example: Assume you're testing an input box accepting numbers from 1 to 20. As a result of boundary value analysis, we can divide test cases into three categories:

  • The test data will be the same as the input boundaries of input: 1 and 20.
  • Input values above the extreme edges: 2 and 21.
  • Input values below the extreme edges: 0 and 19.

Therefore, the boundary values are 0, 1, 2, and 19, 20, 21.

41. Online Resources:

Published On: 2024-01-17