Manual Testing Question
Manual Testing Question
1. Have you worked in Agile methodology? The Bug Life Cycle refers to the stages a defect goes
Explain it. through from identification to closure:
6. Difference between Smoke and Sanity Testing 9. How many tests have you automated in a single
sprint?
- Smoke Testing: Initial testing to check whether the
major functionalities are working. Performed after a The number depends on the complexity and scope of
new build is deployed. the sprint, but typically ranges between 10 to 20
automated test cases per sprint.
- Sanity Testing: Focuses on verifying specific
functionalities after a minor code change to ensure
they work as expected.
10. How do you decide which test cases to
automate?
7. What is STLC in software testing? - Repeatability: Test cases that are executed
frequently.
STLC (Software Testing Life Cycle) refers to the
process followed during software testing: - High-risk areas: Test cases that cover critical
functionalities.
1. Requirement Analysis: Understanding the
requirements. - Data-driven tests: Tests that require multiple data
sets.
2. Test Planning: Creating a test strategy and plan.
- Regression tests: Test cases required for regression
3. Test Case Development: Writing test cases.
cycles.
4. Environment Setup: Preparing the testing
- Stable features: Tests for functionalities that are not
environment.
expected to change often.
5. Test Execution: Running test cases and logging
defects.
11. Which test cases would you not automate?
6. Test Closure: Ensuring all test objectives are met
and generating test closure reports. - Exploratory tests: Tests requiring human intuition.
- One-time execution tests: Tests executed only once.
8. Difference between Alpha and Beta Testing - UI tests with frequent changes: Tests for unstable or
frequently changing interfaces.
- Complex test scenarios: Tests that are too complex
to automate effectively.