ISTQB CTFL-2018 Practice Test - Questions Answers, Page 9

List of questions
Question 81

The following test cases for a Library Management System are available to test changes made to the functions and data structures associated with borrowers
1. Add a new borrower to the system
2. Update a borrower's data
3. Remove a borrower from the system
4. Loan a book to a borrower
5. Return a book from a borrower
6. Reserve a book for a borrower
7. Send 'reservation ready' message to a borrower
Which of the following test sequences represents a possible use case? (a test sequence always start with test #1)
Question 82

A money order system is designed to calculate the charge for a transfer
- Amounts from 1 to 1999 are charged EUR 10.
- Amounts from 2000 to 5000 are charged EUR 15
- Amounts below EUR 1 or above EUR 5000 are not accepted. Assume that only integer values can occur. Which of these sets of amounts covers all equivalence classes?
Question 83

The following incident report that was generated during test of a web application
What would you suggest as the most important report improvement?
Defect detected date: 15.8.2010
Defect detected by. Joe Smith
Test level System test
Test case Area 5/TC 98
Build version: 2011-16.2
Defect description After having filled out all required fields in screen 1,1 click ENTER to continue to screen 2. Nothing happens, no system response at all.
Question 84

Which of the following statements is true?
Question 85

An organization is working on updating test cases for a particular module of their software.
Sam updated a set of test cases yesterday and saved the new version on his PC.
Unfortunately, the hard disk of his PC crashed, and his work was lost.
The IT department of the organization restored the contents of his hard disk with the last available back-up - from the previous morning However the changes made by him yesterday were lost forever
Which of the following tools, had it been used, would have prevented the loss of Sam's updates?
Question 86

Which of the following statements about decision tables are TRUE?
I, Generally, decision tables are generated for low risk test items
II, Test cases derived from decision tables can be used for component tests.
II,I, Several test cases can be selected for each column of the decision table.
IV, The conditions in the decision table represent negative tests generally.
Question 87

'Statement Testing' is part of;
Question 88

The four test levels defined for a common V-model testing approach are:
Question 89

Typically, exit criteria may consist of:
Question 90

Consider the following pseudo code
1. Begin
2. Read Gender
3. __Print ''Dear''
4. If Gender = 'female'
5. Print (''Ms'')
6. Else
7. __Print ( ''Mr'')
8. Endif
9. End
How many test cases are needed to achieve 100 per cent decision coverage?
Question