Which of the types of test tools noted below BEST describes tools that support reviews?
Answer : D
Tools for document review and annotation
Tools for document comparison and version control
Tools for checklist management and defect tracking
Tools for recording user actions and feedback
Tools for analyzing user behavior and satisfaction
Tools for simulating different user interfaces and devices
Tools for data validation and verification
Tools for data cleansing and transformation
Tools for data profiling and analysis
Tools for security testing
Tools for performance testing
Tools for accessibility testing
ISTQBw Certified Tester Foundation Level (Syllabus 2018. English) provided by iSOl GmbH, international Software Quality Institute Question 25 of 40 | Level: K3 | Number of correct answers: 1 I Credits: 1 Given the following stale model of sales order software:
Which of the following sequences of transitions provides the highest level of transition coverage for the model (assuming you can start in any state)?
Answer : C
IN PRODUCTION -> SHIPPED
SHIPPED -> INVOICED
INVOICED -> CANCELLED
CANCELLED -> PLACED
PLACED -> IN PRODUCTION
Option A covers only six transitions in the following sequence:
PLACED -> CANCELLED
CANCELLED -> PLACED
PLACED -> IN PRODUCTION
IN PRODUCTION -> CANCELLED
Option B covers only five transitions in the following sequence:
PLACED -> IN PRODUCTION
IN PRODUCTION -> SHIPPED
SHIPPED -> CANCELLED
CANCELLED -> PLACED
Option D covers only four transitions in the following sequence:
IN PRODUCTION -> CANCELLED
CANCELLED -> PLACED
PLACED -> IN PRODUCTION
Decision table testing is being performed on transactions in a bank's ATM (Automated teller Machine) system. Two test cases have already been generated for rules 1 and 4, which are shown below:
Given the following additional test cases:
Which two of the additional test cases would achieve fill coverage of the full decision table (when combined with the test cases that have already been generated for rules a and 4?
Answer : D
TC1: Account = Checking, Amount = $600, Expected Result = Process the transaction
TC4: Account = Savings, Amount = Not entered, Expected Result = Generate an error message
The additional test cases are:
DT1: Account = Checking, Amount = Not entered, Expected Result = Generate an error message
DT2: Account = Savings, Amount = $100, Expected Result = Process the transaction
DT3: Account = Checking, Amount = $100, Expected Result = Process the transaction
DT4: Account = Savings, Amount = $600, Expected Result = Generate an error message
To achieve full coverage of the full decision table, two more test cases are needed that cover the remaining six rules. DT1 and DT4 cover these rules, as shown in the table below:
A bank offers a savings account with various interest rates based on the current balance in the account. The balance ranges and respective interest rates are:
Using two-point boundary value analysis, which of the following sets of test Inputs provides the relatively highest level of boundary coverage?