CTFL Exam QuestionsBrowse all questions from this exam

CTFL Exam - Question 23


Given the following requirement:

The system shall compute the car’s position using the following equation: new_distance_traveled + old_position

Which type of testing should be implemented to help ensure this requirement is met?

Show Answer
Correct Answer:

Discussion

1 comment
Sign in to comment
reshma_2021Option: A
Mar 18, 2025

Functional testing ensures that the system behaves according to its specified requirements. In this case, the requirement describes how the system should compute the car’s position using a mathematical equation. Functional testing verifies that the system correctly calculates the new position based on the given formula (new_distance_traveled + old_position) and produces the expected output for different inputs. Testers would create test cases with various values for new_distance_traveled and old_position to confirm that the system consistently computes the correct position.