Exploratory testing is an experience-based test technique:
Which of the following is an advantage of the whole team approach?
Which of the following statements about checklist-based testing is TRUE?
A requirement specifies that if the total amount of sales (TAS) made during the year by a corporate seller is 300,000€ or more, the bonus that must be paid to the seller is 100% of a certain amount agreed upon at the beginning of the year. The software contains a fault as it implements this requirement with the decision "IF (TAS = 300,000)" instead of "IF (TAS >= 300,000)". The application of the 3-value boundary value analysis to this problem consists of the following three test cases (TAS is an integer variable):TC1 = 299,999 -TC2=300,000 -TC=300,001 -Which of the following statements is TRUE?
As a tester, as part of a V-model project, you are currently executing some tests aimed at verifying if a mobile app asks the user to grant the proper access permissions during the installation process and after the installation process. The requirements specification states that in both cases the app shall ask the user to grant access permissions only to the camera and photos stored on the device. However, you observe that the app also asks the user to grant access permission to all contacts on the device. Consider the following items:[I]. Test environment.[II]. Expected result.[III]. Actual result.[IV]. Test level.[V]. Root cause.Based on only the given information, which of the items listed above, are you able to CORRECTLY specify in a defect report?
An anti-intrusion system is battery powered and is activated by pressing the only available button. To deactivate the system, the operator must enter a PIN code. The system will stay in alert mode within a configurable timeout and an alarm bell will ring if the system is not deactivated before the timeout expires. The following state transition diagram describes the behavior of the system:What is the minimum number of test cases needed to cover every unique sequence of exactly 4 states / 3 transitions starting and ending in the “Inactive” state? (note that “Inactive” is not a final state in the diagram).