Manual Testing Interview Questions for 1 Year Experience

1️⃣ Role Expectation for a Manual Tester with 1 Year Experience

At 1 year of experience, interviewers do not expect mastery, but they expect clarity, ownership, and practical exposure.

What companies expect from you:

  • Solid understanding of SDLC & STLC
  • Ability to write clear test cases
  • Experience in functional, regression, smoke, sanity testing
  • Basic exposure to Agile/Scrum
  • Hands-on use of JIRA/TestRail
  • Proper bug reporting with evidence
  • Ability to think in scenarios, not just definitions

👉 You are evaluated on how you think, not how much you memorize.


2️⃣ Core Manual Testing Interview Questions & Answers (Technical)

1. What is Software Testing?

Software testing is the process of verifying and validating that a software application works as per requirements and is free from critical defects before release.


2. What is the difference between Verification and Validation?

VerificationValidation
Static processDynamic process
Reviews, walkthroughsExecuting test cases
“Are we building the product right?”“Are we building the right product?”

3. Explain SDLC phases.

  1. Requirement Analysis
  2. Design
  3. Development
  4. Testing
  5. Deployment
  6. Maintenance

👉 Testing starts from requirement phase, not only execution.


4. Explain STLC with activities.

PhaseActivities
Requirement AnalysisIdentify testable requirements
Test PlanningScope, effort, risks
Test Case DesignWrite test cases, prepare test data
Environment SetupTest environment readiness
Test ExecutionExecute, log defects
Test ClosureTest summary report

5. Difference between Smoke and Sanity Testing?

SmokeSanity
Build verificationFunction verification
Broad & shallowNarrow & deep
Done on new buildDone after bug fixes

6. What is Regression Testing?

Regression testing ensures that existing functionality still works after code changes, bug fixes, or enhancements.


7. What is a Test Case?

A test case is a set of steps, conditions, and expected results to validate a requirement.


8. What are the components of a test case?

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

9. Difference between Severity and Priority?

SeverityPriority
Impact on systemUrgency to fix
Set by testerSet by PM/Lead

10. What is a Defect Life Cycle?

New → Assigned → Open → Fixed → Retest → Closed
(Rejected / Deferred / Reopened if needed)


3️⃣ Agile & Scrum Interview Questions (1 Year Level)

11. What is Agile?

Agile is an iterative development methodology that delivers working software in short cycles called sprints.


12. What is a Sprint?

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


13. Role of a Tester in Agile?

  • Requirement discussion
  • Writing test cases early
  • Continuous testing
  • Participating in sprint ceremonies

14. What are Scrum ceremonies?

  • Sprint Planning
  • Daily Stand-up
  • Sprint Review
  • Retrospective

15. What do you discuss in Daily Stand-up?

  • What I did yesterday
  • What I will do today
  • Any blockers

4️⃣ Real-Time Scenario-Based Questions (with RCA)

16. Scenario: Login works but dashboard loads slowly. What will you test?

  • Network latency
  • API response time
  • DB queries
  • Server logs
  • Browser performance

17. Scenario: Bug reopened by client. Why?

Root Cause Analysis (RCA):

  • Incomplete fix
  • Wrong environment
  • Missing regression coverage
  • Misunderstood requirement

18. Scenario: Production defect found. What steps do you follow?

  1. Collect logs/screenshots
  2. Reproduce issue
  3. Inform lead
  4. Log defect with severity
  5. Support RCA

19. Scenario: Requirement is unclear. What will you do?

  • Discuss with BA/PO
  • Raise queries
  • Add assumptions in test cases
  • Avoid blind testing

5️⃣ Example Defects (Real Project Style)

Sample Defect 1: Login Page

Summary: Login allows invalid email format
Steps:

  1. Enter test@abc
  2. Enter valid password
  3. Click Login

Expected: Error message
Actual: User logged in

Severity: High
Priority: High


Sample Defect 2: Payment Failure

Issue: Amount deducted but order not created
Impact: Financial loss
Severity: Critical


6️⃣ Test Case Examples (UI, API, DB, Performance)

UI Test Case Example

StepActionExpected
1Enter usernameAccepted
2Enter passwordMasked
3Click LoginRedirect to dashboard

API Test Case (Postman)

Scenario: Verify login API

  • Method: POST
  • Endpoint: /api/login
  • Status Code: 200
  • Response Time: < 2 sec

Database Validation (SQL)

SELECT * FROM users WHERE email=’test@test.com’;

Validate:

  • Record created
  • Status updated

Performance Test Idea

  • Login response time under 3 seconds
  • Concurrent users: 500

7️⃣ Tools Interview Questions (Hands-on Focus)

20. How do you use JIRA?

  • Create defects
  • Track status
  • Link test cases
  • Add evidence

21. What is TestRail?

Test management tool used to:

  • Write test cases
  • Track execution
  • Generate reports

22. Have you used Postman?

Yes, for:

  • API testing
  • Validating response codes
  • JSON response verification

23. Do you know Selenium?

At 1 year:

  • Basic knowledge
  • Understand automation concept
  • Not expected expert coding

24. SQL usage in testing?

  • Validate backend data
  • Check data consistency
  • Verify transactions

8️⃣ Domain-Based Questions (Beginner Level)

Banking Domain

  • Account creation
  • Fund transfer
  • Balance validation

Insurance Domain

  • Policy creation
  • Premium calculation
  • Claim workflow

ETL

  • Source to target validation
  • Row count checks
  • Data transformation

9️⃣ HR & Managerial Round Questions

25. Tell me about your project.

Focus on:

  • Domain
  • Your role
  • Testing types
  • Tools used

26. How do you handle pressure?

  • Prioritize tasks
  • Communicate blockers
  • Focus on critical defects

27. Why should we hire you?

  • Practical exposure
  • Strong fundamentals
  • Willingness to learn

28. How do you handle conflicts with developers?

  • Share evidence
  • Discuss logically
  • Escalate only if needed

🔟 Common Mistakes by 1-Year Experience Candidates

❌ Only definitions, no examples
❌ No defect explanation
❌ Confusing severity & priority
❌ No Agile understanding
❌ Cannot explain own project


1️⃣1️⃣ Quick Revision Cheat Sheet

  • SDLC vs STLC
  • Smoke vs Sanity
  • Severity vs Priority
  • Bug Life Cycle
  • Agile ceremonies
  • Test Case format

1️⃣2️⃣ FAQs

How many test cases did you write?

Around 150–300 depending on module complexity.

Is automation mandatory?

No, but basic awareness is expected.

Can freshers crack interviews with manual testing?

Yes—clarity + real examples matter more than tools.

Leave a Comment

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