Which of the following is the best source of Expected Outcomes for Use
![]()
Practice ISTQB Foundation Level Q&A – Which of the following is the best source of Expected Outcomes for User Acceptance Test
scripts?
![]()
Practice ISTQB Foundation Level Q&A – Which of the following is the best source of Expected Outcomes for User Acceptance Test
scripts?
![]()
Practice ISTQB Foundation Level Q&A – In a system designed to work out the tax to be paid:
An employee has £4000 of salary tax free. The next £1500 is taxed at 10%
The next £28000 is taxed at 22%
Any further amount is taxed at 40%
To the nearest whole pound, which of these is a valid Boundary Value Analysis test case?
![]()
Practice ISTQB Foundation Level Q&A – Which of the following characterises the cost of faults?
![]()
Practice ISTQB Foundation Level Q&A – Given the following sets of test management
terms (v-z), and activity descriptions (1-5), which one of the following
best pairs the two sets?
v – test control
w – test monitoring
x – test estimation
y – incident management
z – configuration control
1 – calculation of required test resources
2 – maintenance of record of test results
3 – re-allocation of resources when tests overrun
4 – report on deviation from test plan
5 – tracking of anomalous test results
![]()
Practice ISTQB Foundation Level Q&A – Analyse the following highly simplified procedure:
Ask: “What type of ticket do you require, single or return?”
IF the customer wants ‘return’
Ask: “What rate, Standard or Cheap-day?”
IF the customer replies ‘Cheap-day’
Say: “That will be £11:20”
ELSE
Say: “That will be £19:50”
ENDIF
ELSE
Say: “That will be £9:75”
ENDIF
Now decide the minimum number of tests that are needed to ensure
that all the questions have been asked, all combinations have occurred
and all replies given.
![]()
Practice ISTQB Foundation Level Q&A – which of the following statements is not true
![]()
Practice ISTQB Foundation Level Q&A – How many test cases are necessary to cover
all the possible sequences of statements (paths) for the following
program fragment?
…………
if (Condition 1)
then statement 1
else statement 2
fi
if (Condition 2)
then statement 3
fi
…………
![]()
Practice ISTQB Foundation Level Q&A – To test a function, the programmer has to write a _________, which calls the function to be
tested and passes it test data.
![]()
Practice ISTQB Foundation Level Q&A – Which of the following is not a quality characteristic listed in ISO 9126 Standard?
![]()
Practice ISTQB Foundation Level Q&A – An input field takes the year of birth
between 1900 and 2004. The boundary values for testing this field are
![]()
Practice ISTQB Foundation Level Q&A – A program validates a numeric field as follows:
values
less than 10 are rejected, values between 10 and 21 are accepted,
values greater than or equal to 22 are rejected. which of the following
input values cover all of the equivalence partitions?
![]()
Practice ISTQB Foundation Level Q&A – Using the same code example as question 17,how
many tests are required to achieve 100% branch/decision coverage?
![]()
Practice ISTQB Foundation Level Q&A – If the pseudocode below were a programming language ,how many tests are required to achieve
100% statement coverage?
1. If x=3 then
2. Display_messageX;
3. If y=2 then
4. Display_messageY;
5. Else
6. Display_messageZ;
7. Else
8. Display_messageZ;
![]()
Practice ISTQB Foundation Level Q&A – Increasing the quality of the software, by better development methods, will affect the time
needed for testing (the test phases) by:
![]()
Practice ISTQB Foundation Level Q&A – which of the following statements is not true