1 Year Experience Manual Testing Software Testing Interview Questions

1. Role Expectations – Manual Tester with 1 Year Experience

At 1 year of experience, interviewers expect you to function as a Junior Software Test Engineer who can test assigned modules independently with minimal supervision.

What interviewers realistically expect:

  • Strong understanding of manual testing fundamentals
  • Clear knowledge of STLC and SDLC
  • Ability to write and execute test cases
  • Experience in functional, smoke, sanity, regression testing
  • Ability to log clear, reproducible defects
  • Basic understanding of Agile/Scrum
  • Hands-on usage of JIRA, TestRail
  • Exposure (not mastery) to API, SQL, automation awareness
  • Good communication with developers and test leads

2. Core Manual Testing Interview Questions & Structured Answers

1. What is manual testing?

Manual testing is the process of testing a software application without using automation tools, where test cases are executed manually to identify defects and verify requirements.


2. Why is manual testing still important?

  • Helps understand business logic
  • Useful for exploratory and usability testing
  • Required when UI changes frequently
  • Essential before automation is implemented

3. Explain SDLC and tester involvement

SDLC PhaseTester Responsibility
RequirementRequirement understanding & review
DesignTest scenario identification
DevelopmentTest case preparation
TestingTest execution & defect reporting
DeploymentSanity testing
MaintenanceRegression testing

4. Explain STLC with real activity examples

STLC (Software Testing Life Cycle):

  1. Requirement Analysis – Understand requirements, clarify doubts
  2. Test Planning – Decide scope, approach, timelines
  3. Test Case Design – Write test cases & scenarios
  4. Environment Setup – Verify test environment readiness
  5. Test Execution – Execute test cases, log defects
  6. Test Closure – Prepare test summary report

At 1 year, interviewers expect you to explain what you actually did, not textbook definitions.


5. Difference between verification and validation

VerificationValidation
Static activityDynamic activity
Reviews & walkthroughsActual testing
Are we building it right?Are we building the right product?

6. What types of testing have you performed?

  • Functional testing
  • Smoke testing
  • Sanity testing
  • Regression testing
  • System testing
  • Basic UAT support

7. Smoke testing vs Sanity testing

Smoke TestingSanity Testing
Build stability checkBug-fix verification
Broad coverageNarrow & focused
Done before detailed testingDone after small changes

8. What is a test case?

A test case is a documented set of steps, test data, and expected results used to verify a specific requirement.


9. Components of a test case

  • Test Case ID
  • Test Scenario
  • Preconditions
  • Test Steps
  • Test Data
  • Expected Result
  • Actual Result
  • Status

10. How do you write good test cases?

  • Understand business flow
  • Cover positive and negative scenarios
  • Add boundary conditions
  • Write clear, reusable steps

11. What is a defect (bug)?

A defect is a difference between expected behavior and actual behavior of the application.


12. Explain defect life cycle

StatusDescription
NewDefect logged by tester
AssignedAssigned to developer
OpenDeveloper starts fixing
FixedCode fixed
RetestTester verifies
ClosedIssue resolved
ReopenedIssue still exists

13. Severity vs Priority

SeverityPriority
Impact on applicationUrgency to fix
Decided by testerDecided by product
App crashBusiness deadline

14. What makes a good bug report?

  • Clear summary
  • Steps to reproduce
  • Actual vs expected result
  • Screenshots/logs
  • Correct severity & priority

3. Agile & Process Interview Questions

15. What is Agile testing?

Agile testing is continuous testing performed in short development cycles (sprints) with frequent feedback.


16. What is a sprint?

A sprint is a time-boxed iteration (1–2 weeks) where development and testing happen together.


17. Agile ceremonies you are aware of

  • Sprint planning
  • Daily stand-up
  • Sprint review
  • Retrospective

18. What is a user story?

A user story describes functionality from an end-user perspective.

Example:
As a user, I want to reset my password so that I can log in again.


19. What are acceptance criteria?

Acceptance criteria define conditions that must be met for a user story to be considered complete.


4. Scenario-Based Interview Questions with RCA

20. Login works for valid users but fails for some users. What will you check?

  • User status in DB
  • Role permissions
  • Configuration issues
  • Application logs

RCA Example:
Some users were marked inactive in the database.


21. A defect you logged is rejected. What do you do?

  • Re-test the scenario
  • Re-check requirements
  • Attach screenshots/logs
  • Discuss politely with developer

22. Application crashes during large file upload. RCA?

  • Missing file size validation
  • Memory limit exceeded
  • Timeout handling missing

23. Real-Time Defect Example

Issue: Submit button enabled without mandatory fields
Severity: Medium
RCA: Front-end validation missing


5. Real-Time Project Defects & RCA Examples

Banking Application

  • Defect: Incorrect balance after fund transfer
  • RCA: Cache not refreshed after DB update

Insurance Application

  • Defect: Policy created without document upload
  • RCA: Backend validation missing

ETL Project

  • Defect: Data mismatch in reports
  • RCA: Date format conversion issue

6. Test Case Examples

UI Test Case – Login Page

FieldValue
ScenarioValid login
StepsEnter valid credentials
ExpectedDashboard displayed

API Test Case – Login

Using Postman:

POST /login

{

  “username”: “testuser”,

  “password”: “pass123”

}


Database Validation (SQL)

SELECT status 

FROM users 

WHERE username = ‘testuser’;


Basic Performance Awareness

Using JMeter:

  • 50 concurrent users
  • Response time < 3 seconds

7. Tools Knowledge (1 Year Manual Tester Level)

JIRA

  • Bug creation
  • Status updates
  • Attachments & comments

TestRail

  • Test case creation
  • Test execution tracking

Selenium

  • Automation awareness
  • Understanding why automation is used

SQL

  • Basic SELECT queries
  • Data validation

8. Domain Exposure (Basic)

Banking

  • Login
  • Account balance
  • Fund transfer

Insurance

  • Policy creation
  • Premium calculation

ETL

  • Source-to-target data validation

9. Common Mistakes at 1 Year Experience

  • Memorizing answers without examples
  • Poor bug descriptions
  • Confusing severity and priority
  • Not explaining real project work
  • Ignoring Agile basics

10. Quick Revision Cheat Sheet

  • SDLC vs STLC
  • Smoke vs Sanity
  • Defect life cycle
  • Severity vs Priority
  • Agile basics
  • SQL basics
  • RCA fundamentals

11. FAQs

Is automation required at 1 year experience?

Not mandatory, but basic awareness is a plus.


What role should I target?

Junior Software Test Engineer / Manual Tester roles.

Leave a Comment

Your email address will not be published. Required fields are marked *