NEW
Font size
WorksheetsISTQB Foundations Examen I
Total questions: 40
Worksheet time: 3600secs
Match the following test work products (1-4) with the right description (A-D).
1. Test suite
2. Test case
3. Test script
4. Test charter
A. A set of test scripts to be executed in a specific test run
B. A set of instructions for the execution of a test
C. Contains expected results
D. Documentation of test activities in session-based exploratory testing
#18 - You will be invited to a review. The work product to be reviewed is a description of the in-house document creation process. The aim of the description is to present the work distribution between the different roles involved in the process in a way that can be clearly understood by everyone. You will be invited to a checklist-based review. The checklist will also be sent to you. It includes the following points:
i. Is the person who performs the activity clearly identified for each activity?
ii. Are the entry criteria clearly defined for each activity?
iii. Are the exit criteria clearly defined for each activity?
iv. Are the supporting roles and their scope of work clearly defined for each activity?
In the following we show an excerpt of the work result to be reviewed, for which you should use the checklist above:
"After checking the customer documentation for completeness and correctness, the software architect creates the system specification. Once the software architect has completed the system specification, he invites testers and verifiers to the review. A checklist describes the scope of the review. Each invited reviewer creates review comments - if necessary - and concludes the review with an official review done-comment."
The following statement refers to decision coverage:
“When the code contains only a single ‘if’ statement and no loops or CASE statements, and its execution is not nested within the test, any single test case we run will result in 50% decision coverage.”
An employee’s bonus is to be calculated. It cannot be negative, but it can be calculated down to zero. The bonus is based on the length of employment:
• Less than or equal to 2 years
• More than 2 years but less than 5 years
• 5 to 10 years inclusively
• Longer than 10 years
A speed control and reporting system has the following characteristics:
• If you drive 50 km/h or less, nothing will happen.
• If you drive faster than 50 km/h, but no more than 55 km/h, you will be warned.
• If you drive faster than 55 km/h but not more than 60 km/h, you will be fined.
• If you drive faster than 60 km/h, your driving license will be suspended.
• The speed in km/h is available to the system as an integer value.
Which would be the most likely set of values (km/h) identified by applying the boundary value
analysis, where only the values on the boundaries of the equivalence classes are selected?
- A company's employees are paid bonuses if they work more than a year in the company and achieve a target which is individually agreed before.
These facts can be shown in a decision table.
Which of the following test cases represents a situation that can happen in real life, and is missing in the above decision table?
a) Condition1 = YES, Condition2 = NO, Condition3 = YES, Action= NO
b) Condition1 = YES, Condition2 = YES, Condition3 = NO, Action= YES
c) Condition1 = NO, Condition2 = NO, Condition3 = YES, Action= NO
d) Condition1 = NO, Condition2 = YES, Condition3 = NO, Action= NO
Which of the following statements about the given state transition diagram and table of test cases is TRUE?
a) The given test cases cover both valid and invalid transitions in the state transition diagram
b) The given test cases represent all possible valid transitions in the state transition diagram
c) The given test cases represent some of the valid transitions in the state transition diagram
d) The given test cases represent pairs of transitions in the state transition diagram
A video application has the following requirement: The application shall allow playing a video on the following display resolution:
1. 640x480
2. 1280x720
3. 1600x1200
4. 1920x1080
Which of the following list of test cases is a result of applying the equivalence partitioning test technique to test this requirement?
The project develops a "smart" heating thermostat. The control algorithms of the thermostat were modeled as Matlab/Simulink models and run on the internet connected server. The thermostat uses the specifications of the server to trigger the heating valves.
The test manager has defined the following test strategy/approach in the test plan:
1. The acceptance test for the whole system is executed as an experience-based test.
2. The control algorithms on the server are checked against standard of the energy
saving regulation.
3. The functional test of the thermostat is performed as risk-based testing.
4. The security tests of data / communication via the internet are executed together
with external security experts.
What four common types of test strategies/approaches did the test manager implement in the test plan?
Which one of the following options structures the test execution schedule according to the
requirement dependencies?
a) R1 ; R3 ; R4 ; R7 ; R2 ; R5 ; R6
b) R1 ; R3 ; R2 ; R4 ; R7 ; R5 ; R6
c) R1 ; R3 ; R2 ; R5 ; R6 ; R4 ; R7
d) R1 ; R2 ; R5 ; R6 ; R3 ; R4 ; R7
You are testing a new version of software for a coffee machine. The machine can prepare different types of coffee based on four categories. i.e., coffee size, sugar, milk, and syrup. The criteria are as follows:
• Coffee size (small, medium, large)
• Sugar (none, 1 unit, 2 units, 3 units, 4 units)
• Milk (yes or no)
• Coffee flavor syrup (no syrup, caramel, hazelnut, vanilla)
Now you are writing a defect report with the following information:
• Title: Low coffee temperature.
• Short summary: When you select coffee with milk, the time for preparing coffee is
too long and the temperature of the beverage is too low (less than 40 °C).
• Expected result: The temperature of coffee should be standard (about 75 °C).
• Degree of risk: Medium
• Priority: Normal
What valuable information was omitted in the above defect report?
a) The actual test results
b) Identification of the tested software version
c) Status of the defect
d) Ideas for improving the test case
Which one of the following is MOST likely to be a benefit of test execution tools?
a) It is easy to create regression tests
b) It is easy to maintain version control of test assets
c) It is easy to design tests for security testing
d) It is easy to run regression tests
Which one of the following test tools is mostly suitable for developers rather than testers?
a) Requirement management tools
b) Configuration management tools
c) Static analysis tools
d) Performance testing tools
