Manual Testing Interview Questions

Manual Testing thumbnail

1) What is the difference between the QA and software testing?

The role of QA (Quality Assurance) is to monitor the quality of the process to produce a quality of a product.
While the software testing, is the process of ensuring the final product and check the functionality of final product and to see whether the final product meets the user’s requirement.

2) What is Testware in manual testing?

Testware is the subset of software, which helps in performing the testing of application. It is a term given to the combination of software application and utilities which is required for testing a software package.

3) What is Test case in manual testing?

Test case is a specific term that is used to test a specific element. It has information of test steps, prerequisites, test environment and outputs.

4) What is a 'USE' case and what does it include?

The document that describes, the user action and system response, for a particular functionality is known as USE case. It includes revision history, table of contents, flow of events, cover page, special requirements, pre-conditions and post-conditions.

5) What is validation and verification in software testing?

In verification, all the key aspects of software developments are taken in concern like code, specifications, requirements and document plans. Verification is done on the basis of four things list of issues, checklist, walk through and inspection meetings. Following verification, validation is done, it involves actual testing, and all the verification aspects are checked thoroughly in validation.

6) What is the difference between white box, black box, and gray box testing?

Black box testing is a testing strategy based solely on requirements and specifications. Black box testing requires no knowledge of internal paths, structures, or implementation of the software being tested.
White box testing is a testing strategy based on internal paths, code structures, and implementation of the software being tested. White box testing generally requires detailed programming skills.
In gray box testing this we look into the "box" being tested just long enough to understand how it has been implemented. Then we close up the box and use our knowledge to choose more effective black box tests.

7) Does an increase in testing always improve the project?

No an increase in testing does not always mean improvement of the product, company, or project. In real test scenarios only 20% of test plans are critical from a business angle. Running those critical test plans will assure that the testing is properly done. The following graph explains the impact of under testing and over testing. If you under test a system the number of defects will increase, but if you over test a system your cost of testing will increase. Even if your defects come down your cost of testing has gone up.

8) What is difference between Master Test Plan and Test Plan?

1.Master Test Plan contains all the testing and risk involved area of the application where as Test case document contains test cases.
2.Master Test plan contain all the details of each and every individual tests to be run during the overall development of application whereas test plan describe the scope, approach, resources and schedule of performing test.
3.Master Test plan contain the description of every tests that is going to be performed on the application where as test plan only contain the description of few test cases. during the testing cycle like Unit test, System test, beta test etc
4.Master Test Plan is created for all large projects but when it is created for the small project then we called it as test plan.

9) What is bug life cycle?

Bug Life Cycle, again is the various stages through which it goes after it's discovered. So once the Quality Assurance Engineer discovers the bug, it's marked as "New", then the concerned authority will assign it to the developer where the status of the bug changes to 'Assigned', once the bug is assigned it's either 'fixed' or 'rejected'. In both the cases, the QAE will verify the bug and mark it as 'reopen' (if not fixed properly) or 'closed' if it no longer exists.

10) What is smoke testing and what is sanity?

What would happen if you turn on a newly brought TV and you get smoke coming out of it? Smoke testing is basically to ensure that the basic functionality of the product (in TV's case, it should be displaying video when turned on) works fine. So you'll identify the most basic test cases you need to execute and perform them.
Sanity testing is similar - which ensures that the system or product functions without any logical errors. If you are testing a calculator app; you may multiply a number by 9 and check whether the sum of the digits of the answer is divisible by 9.

11) Mention the different types of software testing?

Unit testing
Integration testing and regression testing
Shakeout testing
Smoke testing
Functional testing
Performance testing
White box and Black box testing
Alpha and Beta testing
Load testing and stress testing
System testing

12) What is data driven testing?

Data driven testing is an automation testing part, which tests the output or input values. These values are read directly from the data files. The data files may include csv files, excel files, data pools and many more. It is performed when the values are changing by the time.

13) What is the difference between build and release?

Build: It is a number given to Installable software that is given to testing team by the development team.
Release: It is a number given to Installable software that is handed over to customer by the tester or developer.

14) What is bug leakage and bug release?

Bug release is when software or an application is handed over to the testing team knowing that the defect is present in a release. During this the priority and severity of bug is low, as bug can be removed before the final handover.
Bug leakage is something, when the bug is discovered by the end users or customer, and missed by the testing team to detect, while testing the software.

15) What is the difference between bug, defect and a error?

There's actually no difference between 'bug' and 'defect'. It's basically an unexpected behaviour of the software. 'Error' too would fall in the same category; but many times errors are well defined. For example - 404 error in HTML pages.

16) Explain the steps for Bug Cycle?

1.Once the bug is identified by the tester, it is assigned to the development manager in open status.
2.If the bug is a valid defect the development team will fix it and if it is not a valid defect, the defect will be ignored and marked as rejected.
3.The next step will be to check whether it is in scope, if it is happen so that, the bug is not the part of the current release then the defects are postponed.
4.If the defect or bug is raised earlier then the tester will assigned a DUPLICATE status.
5.When bug is assigned to developer to fix, it will be given a IN-PROGRESS status.
6.Once the defect is repaired, the status will changed to FIXED at the end the tester will give CLOSED status if it passes the final test.

17) Explain Structure-based testing techniques.

Structure-based testing techniques are also termed as white-box testing techniques.
These are dynamic techniques.
They use the internal structure of the software to derive test cases.
They are usually termed as 'white-box' or 'glass-box' techniques.
They need you to have knowledge of how the software is implemented and how it works.

18) Explain component testing.

Component testing is also termed as unit, module or program testing.
It looks for defects in the software and verifies its functioning.
It can be done in isolation from rest of the system depending on the context of the development life cycle and the system.
Mostly stubs and drivers are used to replace the missing software and simulate the interface between the software components in a simple manner.
The stub is called from the software component to be tested while a driver calls a component to be tested.

19) What are decision tables? Why do we use them?

Decision tables are specification-based techniques which are more focused on business logic or business rules.
A decision table is useful in dealing with combinations of things like inputs.
This technique is sometimes also called as 'cause-effect' table as there exists an associated logic diagramming technique called 'cause-effect graphing' which is at times used to help derive the decision table.
The techniques of equivalence partitioning and boundary value analysis are usually applied to specific situations or inputs.

20) Explain exploratory testing.

In exploratory testing approach testers are involved in minimum planning and maximum test execution.
The planning includes creation of a test charter, a short declaration of the scope of a short time-boxed test effort, the objectives and possible approaches to be used.
The test design and test execution are performed parallelly without any formal documentation of test conditions, test cases or test scripts. However, this does not imply that other more formal testing techniques will not be used.

21) List the pre-requisites for white-box testing

The pre-requisites for white-box testing are similar to that of black-box testing with one major difference: During white-box testing, the testers have access to the application logic. The tester should ask for access to detailed functional specs and requirements, design documents (both high-level and detailed), and source code. The tester analyzes the source code and prepares functional tests to ensure that the application behaves in compliance with both the requirements and the specs.

22) How do drivers and stubs relate to manual testing?

Drivers and stubs are a part of incremental testing.
The two approaches used in incremental testing are: the top down and the bottom up methods.
Drivers are used for the bottom up approach.
Drivers are the modules that run the components that are being tested.
A stub is used for the top down approach.
It is a replacement of sorts for a component which is used to test a component that it calls.

23) What is branch testing and what is boundary testing?

The testing of all the branches of the application, which is tested once, is known as branch testing. While the testing, which is focused on the limit conditions of the software is known as boundary testing.

24) What are the contents in test plans and test cases?

Testing objectives
Testing scope
Testing the frame
The environment
Reason for testing
The criteria for entrance and exit
Deliverables
Risk factors

25) What is quality audit?

The systematic and independent examination for determining the quality of activities is known as quality audit. It allows the cross check for the planned arrangements, whether they are properly implemented or not.

26) How does a server or client environment affect software testing?

As the dependencies on the clients are more, the client or server applications are complex.
The testing needs are extensive as servers, communications and hardware are interdependent. Integration and system testing is also for a limited period of time.

27) What are the tools used by a tester while testing?

Selenium
Firebug
OpenSTA
WinSCP
YSlow for FireBug
Web Developer toolbar for firebox

28) Explain stress testing, load testing and volume testing?

Load Testing: Testing an application under heavy but expected load is known as Load Testing. Here, the load refers to the large volume of users, messages, requests, data, etc.
Stress Testing: When the load placed on the system is raised or accelerated beyond the normal range then it is known as Stress Testing.
Volume Testing: The process of checking the system, whether the system can handle the required amounts of data, user requests, etc. is known as Volume Testing.

29) What are the five common solutions for software developments problems?

Setting up the requirements criteria, the requirements of a software should be complete, clear and agreed by all.
The next thing is the realistic schedule like time for planning , designing, testing, fixing bugs and re-testing.
Adequate testing, start the testing immediately after one or more modules development.
Use rapid prototype during design phase so that it can be easy for customers to find what to expect.
Use of group communication tools

30) What is thread testing?

A thread testing is a top-down testing, where the progressive integration of components follows the implementation of subsets of the requirements, as opposed to the integration of components by successively lower levels.

31) What is configuration management?

It is a process to control and document any changes made during the life of a project. Release control, Change control and Revision control are the important aspects of configuration management.

32) What is Ad Hoc testing?

It is a testing phase where the tester tries to break the system by randomly trying the system’s functionality. It can include negative testing as well.

33) What is Code Complete from testing point of view?

Phase of development where functionality is implemented in entirety with only bug fixes remaining.
All functions from the functional specifications are already implemented.

34) Expalin about about Code Coverage and Code Inspection?

Code Coverage : This is an analysis method which determines which parts of the software have already been covered by the test case suite and which are remaining.
Code Inspection : A formal testing technique where the programmer reviews source code with a group who ask questions analyzing the program logic, analyzing the code with respect to a checklist of historically common programming errors, and analyzing its compliance with coding standards.

35) List out the roles of software Quality Assurance engineer?

A software quality assurance engineer tasks include following things
Writing source code
Software design
Control of source code
Reviewing code
Change management
Configuration management
Integration of software
Program testing
Release management process

36) Explain what are test driver and test stub and why it is required?

The stub is called from the software component to be tested, it is used in top down approach. The driver calls a component to be tested, it is used in bottom up approach. It is required when we need to test the interface between modules X and Y and we have developed only module X. So we cannot just test module X but if there is any dummy module we can use that dummy module to test module X Now module B cannot receive or send data from module A directly, so in these case we have to transmit data from one module to another module by some external features. This external feature is referred as Driver

37) Explain what is Bug triage?

A bug triage is a process to ensure bug report completeness.
Assign and analyze the bug
Assigning bug to proper bug owner
Adjust bug severity properly
Set appropriate bug priority

38) Explain web-testing.

Web testing is software testing focusing on web applications.
It helps in addressing issues before making the application live to public.
Security of the web application, basic functionality of the site, accessibility to handicapped users and fully able users, readiness for expected traffic, number of users, ability to survive a massive traffic spike are some of the issues which are handled in these applications.

39) Why are decision tables used in many cases rather than equivalence partitioning and boundary value analysis?

A decision table is a good way to deal with combinations of things (e.g. inputs).
The techniques of equivalence partitioning and boundary value analysis are often applied to specific situations or inputs.
If different combinations of inputs result in different actions being taken, it can be more difficult to show using equivalence partitioning and boundary value analysis, which tend to be more focused on the user interface.
The other two specification based techniques - decision tables and state transition testing are more focused on business logic or business rules.

40) Which type of software should not be automated?

Unstable/ Incomplete software as they are still undergoing changes
Test scripts which are run once in a while
Code and document review

41) What is SilkTest? What is the methodology behind Silk test?

SilkTest is software testing automation tool developed by Segue Software, Inc.
The methodology behind silk test is a six-phase testing process:
1.Plan - Determine the testing strategy and define specific test requirements.
2.Capture - Classify the GUI objects in your application and build a framework for running your tests.
3.Create - Create automated, reusable tests. Use recording and/ or programming to build test scripts written in Segue's 4Test language.
4.Run - Select specific tests and execute them against the AUT.
5.Report - Analyze test results and generate defect reports.
6.Track - Track defects in the AUT and perform regression testing.

42) Explain the following: SilkTest Host, SilkTest Agent, SilkTest Project.

SilkTest Host - SilkTest component that manages and executes test scripts. It usually runs on a machine different than the machine where AUT (Application Under Test) is running.
SilkTest Agent - SilkTest component that receives testing commands from the SilkTest Host and interacts with AUT (Application Under Test) directly. SilkTest Agent usually runs on the same machine where AUT is running.
SilkTest Project - A SilkTest project is a collection of files that contains required information about a test project.

43) What is difference between Pilot and Beta testing?

A beta test when the product is about to release to the end user whereas pilot testing take place in the earlier phase of the development cycle.
In beta testing application is given to a few user to make sure that application meet the user requirement and does not contain any showstopper whereas in case of pilot testing team member give their feedback to improve the quality of the application.

44) How do you find the regression scenarios if a defect is fixed?

Regression scenarios would be run on all the test cases that failed during manual testing because of the bug in software. Checking history of the bug may help identifying the regression scenarios.

45) How to deal with not reproducible bug?

A bug cannot be reproduced for following reasons:
1. Low memory.
2. Addressing to non available memory location.
3. Things happening in a particular sequence.
Tester can do following things to deal with not reproducible bug:
Includes steps that are close to the error statement.
Evaluate the test environment.
Examine and evaluate test execution results.
Resources & Time Constraints must be kept in point.

46) List out various tools required to support testing during development of the application?

To support testing during development of application following tools can be used.
Test Management Tools: JIRA, Quality Center etc.
Defect Management Tools: Test Director, Bugzilla.
Project Management Tools: Sharepoint.
Automation Tools: RFT, QTP, and WinRunner

47) Explain what is a cause effect graph?

A cause effect graph is a graphical representation of inputs and the associated outputs effects that can be used to design test cases.

48) Explain what is Test Metric is software testing and what information does it contains?

In software testing, Test Metric is referred to standard of test measurement. They are the statistics narrating the structure or content of a program. It contains information like
Total test
Test run
Test passed
Test failed
Tests deferred
Test passed the first time

49) Explain what is traceability matrix?

A test matrix is used to verify the test scripts per specified requirements of test cases.

50) Explain what is the difference between Regression testing and Retesting?

Retesting is carried out to check the defects fixes, while regression testing is performed to check whether the defect fix have any impact on other functionality.

51) List out the software quality practices through the software development cycle?

Software quality practices includes:
Review the requirements before starting the development phase
Code Review
Write comprehensive test cases
Session based testing
Risk based testing
Prioritize bug based on usage
Form a dedicated security and performance testing team
Run a regression cycle
Perform sanity tests on production
Simulate customer accounts on production
Include software QA Test Reports

52) Mention what are the types of documents in QA?

The types of documents in QA are
Requirement Document
Test Metrics
Test cases and Test plan
Task distribution flow chart
Transaction Mix
User profiles
Test log
User profiles
Test incident report
Test summary report

53) Explain what should your QA documents should include?

QA testing document should include:
List the number of defects detected as per severity level
Explain each requirement or business function in detail
Inspection reports
Configurations
Test plans and test cases
Bug reports
User manuals
Prepare separate reports for managers and users

54) Explain what is MR and what information does MR consists of?

MR stands for Modification Request also referred as Defect report, it is written for reporting errors/problems/suggestions in the software.

55) Mention how validation activities should be conducted?

Validation activities should be conducted by following techniques.
Hire third party independent verification and validation.
Assign internal staff members that are not involved in validation and verification activities
Independent evaluation