Q31
Q31 In regression testing, a previously fixed defect reappears. What should the tester do?
Ignore it
Reopen the defect
Report it as a new issue
Wait for confirmation from the developer
Q32
Q32 During usability testing, users report that a specific feature is difficult to access. What should be done?
Document the issue for improvement
Ignore user feedback
Continue testing without changes
Enhance system performance
Q33
Q33 What is the primary focus of unit testing?
Testing individual components
Testing system performance
Testing user workflows
Testing security
Q34
Q34 What does integration testing validate?
The system's security
Interactions between integrated components
System reliability
User experience
Q35
Q35 What is the main goal of system testing?
Testing individual modules
Testing the system as a whole
Testing the network setup
Testing the database schema
Q36
Q36 Which testing level is primarily conducted by end users?
Unit testing
Integration testing
System testing
Acceptance testing
Q37
Q37 What is the difference between black-box and white-box testing in the context of testing levels?
Black-box focuses on code
White-box ignores internal logic
Black-box validates functionality
White-box focuses on user experience
Q38
Q38 At which level of testing are business requirements typically validated?
Unit testing
Integration testing
System testing
Acceptance testing
Q39
Q39 In integration testing, what is a primary focus of the "top-down" approach?
Testing isolated units
Testing high-level modules first
Testing all modules simultaneously
Testing user interfaces
Q40
Q40 Which testing technique is most effective for verifying database integration in a system?
Unit testing
System testing
Integration testing
Acceptance testing
Q41
Q41 How can integration testing be performed effectively in a microservices-based architecture?
Testing each service in isolation
Testing only APIs
Testing service interactions and data flow
Ignoring communication protocols
Q42
Q42 During unit testing, a test case fails. What should the tester do next?
Ignore the issue
Analyze and fix the defect
Rewrite the test case
Reassign the module
Q43
Q43 During system testing, a defect affecting multiple modules is identified. What is the first step?
Fix the defect immediately
Isolate the defect
Report the issue to the developer
Test the modules individually
Q44
Q44 In acceptance testing, users report an issue that contradicts the requirements. What should be done?
Ignore the issue
Update the requirements
Log the issue and discuss with stakeholders
Re-test the functionality
Q45
Q45 What is the main objective of test case design techniques?
To automate the testing process
To create efficient test cases that cover maximum scenarios
To execute test cases
To reduce test data
Q46
Q46 Which of the following is an equivalence partitioning technique?
Dividing test inputs into valid and invalid groups
Using decision tables
Testing boundary conditions
Combining test scenarios
Q47
Q47 What is the purpose of boundary value analysis?
To test values at the edges of input ranges
To reduce the number of test cases
To test database connections
To ensure user satisfaction
Q48
Q48 Which technique is used to test combinations of inputs?
Equivalence partitioning
Boundary value analysis
Decision table testing
Error guessing
Q49
Q49 What distinguishes error guessing from other test design techniques?
It uses predefined algorithms
It relies on the tester's experience
It tests all input combinations
It guarantees defect detection
Q50
Q50 How is a test case structured using equivalence partitioning?
Include test cases for each partition
Test cases must focus on middle values
Use only invalid partitions
Ignore partition boundaries
Q51
Q51 Which test design technique would you use for testing login functionality with multiple conditions?
Decision table testing
Error guessing
Boundary value analysis
Equivalence partitioning
Q52
Q52 How can you apply boundary value analysis to test a field accepting values between 1 and 100?
Test 0, 50, 101
Test 1, 50, 100
Test -1, 0, 101
Test only 50
Q53
Q53 How can equivalence partitioning be applied to validate a password field requiring 8-16 characters?
Test 7 and 17 characters
Test 8, 12, and 16 characters
Test any random length
Test only invalid lengths
Q54
Q54 During boundary value analysis, a test case fails for an edge value. What is the next step?
Ignore the issue
Log the defect and investigate
Modify the test case
Re-run all test cases
Q55
Q55 A decision table has missing conditions that lead to test case failure. What should the tester do?
Ignore the failure
Add missing conditions and revalidate
Delete invalid test cases
Reassign the task
Q56
Q56 A test case designed using error guessing fails unexpectedly. What is the best approach to resolve it?
Revisit all test cases
Add details about the failure
Analyze and enhance the test case
Ignore the failure
Q57
Q57 What is the primary objective of the defect life cycle?
To develop software faster
To track defects from identification to closure
To reduce development cost
To automate testing
Q58
Q58 Which phase of the defect life cycle involves validating that the defect is fixed?
Open
Closed
Reopened
Resolved
Q59
Q59 What is the status of a defect when it is reported but not yet assigned?
Open
New
Deferred
Reopened
Q60
Q60 What does "Deferred" mean in the defect life cycle?
The defect is fixed
The defect is postponed for a future release
The defect is under testing
The defect is assigned to a developer