Which of the following best describes the Wideband Delphi test estimation technique?
Think about group discussions and anonymous feedback in estimation.
Wideband Delphi involves multiple experts providing estimates anonymously, discussing differences, and revising until they agree.
Which input is least important when preparing a test effort estimate?
Consider what affects test effort realistically.
The UI color scheme does not impact the effort needed to test functionality or performance.
Given the following Python code that calculates total test effort based on test cases and average time per test, what is the output?
test_cases = [5, 8, 3, 10] avg_time_per_test = 1.5 # hours total_effort = sum(test_cases) * avg_time_per_test print(f'Total test effort: {total_effort} hours')
Sum the test cases and multiply by average time.
Sum of test_cases is 5+8+3+10=26. Multiply by 1.5 gives 39.0 hours.
Which assertion correctly verifies that the calculated test effort is within an expected range?
calculated_effort = 40 expected_min = 35 expected_max = 45
Think about checking if a value is between two numbers.
Option B correctly asserts the effort is between min and max inclusive.
What error will this Python code raise when estimating test effort?
test_cases = ['5', '8', '3'] avg_time = 2 total = sum(test_cases) * avg_time print(total)
Check the data types in the sum function.
sum() tries to add strings, causing a TypeError when adding int and str.