ISTQB CTFL4 Practice Test - Questions Answers, Page 23
Related questions
Question 221
Which of the following statements about static testing and dynamic testing is TRUE?
Question 222
Which of the following statements about the typical activities of a formal review process is TRUE?
Question 223
Which of the following answers describes a reason for adopting experience-based testing techniques?
Question 224
Which of the following statements about statement coverage is TRUE?
Question 225
Which of the following statements about white-box testing is FALSE?
Question 226
Exploratory testing is an experience-based test technique
Question 227
Which of the following statements about checklist-based testing is TRUE?
Question 228
Which of the following statements is TRUE?
Question 229
A requirement specifies that a certain identifier (ID) must be between 5 and 10 characters long, must contain only alphanumenc characters, and its first character must be a letter As a tester, you want to apply one-dimensional equivalence partitioning to test this ID. This means that you have to apply equivalence partitioning individually: to the length of the ID, the type of characters contained within the ID, and the type of the first character of the ID. What is the number of partitions to cover?
Question 230
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?
Question