Free BCS CTFL4 Exam Actual Questions

The questions for CTFL4 were last updated On Sep 14, 2024

Question No. 1

Which one of the following statements IS NOT a valid objective of testing?

Show Answer Hide Answer
Correct Answer: B

Finding all defects in a product and ensuring it is defect-free is not a valid objective of testing. Testing aims to find as many defects as possible, build confidence in the quality of the product, and evaluate work products. However, it is unrealistic to expect testing to find all defects, and declaring a product completely defect-free is impractical. Reference: ISTQB CTFL Syllabus V4.0, Section 1.1.1


Question No. 2

Which of the following statements best describes the way in which decision coverage is measured?

Show Answer Hide Answer
Correct Answer: C

Decision coverage, also known as branch coverage, is measured as the number of decision outcomes executed by the tests divided by the total number of decision outcomes in the test object. It ensures that every possible branch (true/false) decision in the code has been executed at least once. Reference: ISTQB CTFL Syllabus V4.0, Section 4.3.2


Question No. 3

Which of the following best describes the relationship between a test progress report and a test summary report?

Show Answer Hide Answer
Correct Answer: A

A test progress report is prepared during a test activity and provides updates on the current status of testing activities, including progress made, issues encountered, and test metrics. A test summary report, on the other hand, is prepared at the end of a test activity and provides a comprehensive overview of the testing carried out, including the final status, test results, defect summaries, and overall conclusions. Reference: ISTQB CTFL Syllabus V4.0, Section 5.3.2


Question No. 4

Which of the following statements is NOT true about Configuration management and software testing?

Show Answer Hide Answer
Correct Answer: D

While configuration management is crucial for maintaining consistent versions of software artifacts and supporting the build process, it does not directly increase the chances of finding defects in the software under test. Version-controlled test ware ensures that the correct versions of test cases and other test artifacts are used, but it is the quality and thoroughness of the tests that determine the effectiveness of defect detection. Reference: ISTQB CTFL Syllabus V4.0, Section 5.4


Question No. 5

Given the following User Story: "As an online customer, I would like to be able to cancel the purchase of an individual item from a shopping list so that it only displays the relevant items, in less than 1 second", which of the following can be considered as applicable acceptance test cases?

I . Click on my online shopping list, select the unwanted Item, delete the unwanted item, the unwanted Item is deleted from the shopping list in less than 1 second.

Ii . Click on my online shopping list, select all the items, delete all the items, the unwanted items are deleted from the shopping list in less than 1 second.

Iii . Tab to the online shopping list and press enter, select the unwanted item, delete the unwanted item, the unwanted item is deleted from the shopping list In less than 1 second.

Iv . Click on the checkout button, select the payment method, make payment, confirmation received of payment and shipping date.

V . Click on my shopping list, select the unwanted Item, delete the unwanted item, the unwanted item is deleted from the shopping list.

Select the correct answer:

Show Answer Hide Answer
Correct Answer: C

Applicable acceptance test cases for the given user story should focus on the specific requirement of deleting an individual item from the shopping list and ensuring that it is removed in less than 1 second. Therefore, the valid test cases are: i. Click on my online shopping list, select the unwanted item, delete the unwanted item, the unwanted item is deleted from the shopping list in less than 1 second. iii . Tab to the online shopping list and press enter, select the unwanted item, delete the unwanted item, the unwanted item is deleted from the shopping list in less than 1 second. Reference: ISTQB CTFL Syllabus V4.0, Section 5.2.2