Computer Knowledge
Software Testing and Quality Control
2,598 Questions
Software testing and quality control questions cover testing methodologies, unit testing, and defect management. These concepts are crucial for the computer knowledge sections of competitive exams. Practice these questions to understand verification and validation processes thoroughly.
Quality control typesUnit testing purposeSoftware vulnerability testingTest planning tasksLoop testing criteriaTest harness functions
Software Testing and Quality Control Questions
-
Remedy Center
-
Quality Center
-
Defect Center
-
Remedy User
-
None
B
Correct answer
Explanation
Prudential uses Quality Center (QC) as their defect tracking system for testing defects. This is a standard tool used in QA/testing environments.
-
White box
-
Gray box
-
Black box
-
Yellow box
C
Correct answer
Explanation
AppScan is a black box testing tool because it tests the application from the outside without accessing the internal code structure. White box requires code access, gray box combines both approaches, and 'yellow box' is not a standard testing category.
-
Black box security testing
-
White box security testing
-
Gray box security testing
-
Blue box security testing
A
Correct answer
Explanation
AppScan is a black box security testing tool because it examines applications from the outside by sending requests and analyzing responses, without accessing the internal code. White box testing requires code access, gray box combines both, and blue box is not a standard testing category.
-
Inform the user population about the test
-
Inform the QA and system administers about the test
-
Backup the database
-
Shut down the configured SMPT servers
A,B,C
Correct answer
Explanation
Pre-test preparations should prevent disruption and enable rollback. Informing users (A) prevents panic from unusual activity. Notifying QA/admins (B) ensures they understand test behavior. Database backup (C) enables recovery if tests cause damage. SMTP shutdown (D) is unnecessary - email testing should be controlled, not disabled.
-
a test policy
-
a test variant
-
a test case
-
a test HTTP request
B
Correct answer
Explanation
AppScan uses test variants to comprehensively discover vulnerabilities - a single vulnerability type may be tested using different techniques, payloads, or request methods to increase detection accuracy. A test policy is the overall configuration, a test case is a single test, and a test HTTP request is just one request.
-
raise new defect,retest,close
-
raise new defect,retest
-
raise new defect,fix the defect,retest,close
-
Retest to eliminate the defect
A
Correct answer
Explanation
From a tester's workflow perspective, the primary actions are raising the defect, waiting for the developer's fix to retest it, and then closing the defect. While developers fix the defect, the QA lifecycle specifically focuses on the logging, verification, and closure of the reported issue.
A
Correct answer
Explanation
Q04 is the environment designation where output files should be specified during batch test case execution in this system. This appears to be a specific test or staging environment identifier.
-
White-box testing is performed by an independent programmer team
-
Black-box testing uses the bottom-up approach
-
Black-box testing involves the business units
-
White-box testing examines the program internal logical structures
D
Correct answer
Explanation
White-box testing examines the internal structure, code, and logic of the application - testers have access to source code and design. Black-box testing treats the software as a opaque box, testing functionality without knowledge of internal implementation, focusing on inputs and outputs.
-
Gray-box testing
-
Black-box testing
-
White-box testing
-
None of these
C
Correct answer
Explanation
Scanning source code using regular expressions to identify suspicious code patterns is a white-box testing technique. White-box testing involves examining internal code structures, logic paths, and implementation details, unlike black-box testing which only considers external inputs and outputs.
-
raise new defect,fix the defect,retest,close
-
raise new defect,retest
-
Retest to eliminate the defect
-
raise new defect,retest,close
D
Correct answer
Explanation
When a new defect is found, the proper workflow is: (1) raise a new defect ticket, (2) perform retesting to confirm the issue exists and gather details, then (3) close the defect. Option A incorrectly includes fixing as part of the raising process, and Option C skips the critical step of documenting the defect.
-
cannot happen
-
can only be shown as warning
-
can be shown as error
-
causes error at runtime
B
Correct answer
Explanation
When condition column values overlap between rows in a decision table, it can indicate ambiguous or unreachable rules, but Rule Studio typically flags this as a warning rather than an error. This is because overlaps might be intentional (with rule priority determining which fires first) or simply informational about potential logic issues.
-
rule task
-
single rule
-
rule set
-
XOM class
C
Correct answer
Explanation
Rule scenario manager in IBM ODM uses rule sets as test artifacts to execute and validate rules. Rule sets contain multiple rules that can be tested together, unlike individual rule tasks or single rules. XOM classes are the executable object model classes, not test artifacts.
-
can use automatic variables
-
can use standard rule properties
-
cannot use rule set parameters
-
cannot use custom rule
B
Correct answer
Explanation
In runtime rule selection expressions, developers can use standard rule properties like effective date, expiration date, and priority to filter rules. Automatic variables are for rule execution, not selection. Rule set parameters and custom rules can be used, contrary to what options C and D suggest.
-
literal
-
default
-
sorted
-
numeric
D
Correct answer
Explanation
Rule ordering mechanisms include 'literal' (explicit order), 'default' (no specific order), and 'sorted' (ordered by some criterion like priority or name). 'Numeric' is not a standard ordering mechanism in rule engines - the question correctly identifies it as the invalid option.
-
Rule
-
rule instance
-
none
-
rule object
D
Correct answer
Explanation
Exit criteria in rule tasks define conditions that halt rule execution. Valid exit criteria include 'Rule' (exit after a specific rule) and 'rule instance' (exit after a rule instance fires). 'Rule object' is not a valid exit criterion type - it's not a standard way to define when rule execution should stop. The question correctly identifies this.