NEW
Font size
WorksheetsISTQB Foundation 3
Total questions: 40
Worksheet time: 10hrs 0mins
In any software development life cycle (SDLC) model, which of the following are characteristics of good testing?
<br>
I. Providing complete test coverage of all branches of the system code
II. Having a corresponding testing activity for each development activity.
III. Testers should be involved in reviewing documents as soon as drafts are available
IV. Each test level has test objectives specific to that level.
I and III
II, III and IV
I, III and IV
I and II
Which of the following statements are true for Review?
<br>
A. Meeting is led by author
B. Main purpose is to review inexpensive way to get some benefit.
C. Main purpose is to discuss problems and check conformance to specifications and standard
D. Formal process based on rules and checklists with entry and exit criteria.
<br>
T. Informal
U. Walkthrough
V. Technical Review
W. Inspection
A and T, B and U, C and V, D and W
A and U, B and T, C and V, D and W
A and W, B and V, C and T, D and U
A and U, B and T, C and W, D and V
A defect was found during testing that the system crashed when the network got disconnected while receiving data the server. The defect was fixed by correcting codes which check the network availability during data transferring. The corresponding module did cover 100% of statement with existing test cases. To verifi. the fix and ensure more extensive coverage, some tests were designed and added to the test suite. What types of testing are mentioned above?..
<br>
A. Functional testing
B. Structural testing
C. Confirmation testing
D. Perfonnance testing
A, B and D
A and C
A, B and C
A, C and D
You are testing an e-commerce system that sells cooking supplier such as spices, flour and other items in bulk. The units in which the items are sold are either grams (for spices and other expensive items) or kilograms (for flour and other expensive items). Regardless of the units, the smallest valid order amount is 0.5 units (e.g., half a gram of cardamom pods) and the largest valid order amount is 25.0 units (e.g., 25 kilograms of sugar). The precision of the units field is 0.1 units.
<br>
Which of the following is a set of input values that cover the equivalence partitions for this field?
12.3
0.4, 0.5, 25.0, 25.1
0.2, 0.9, 29.5
10.0, 28.0
Which of the following statements for the given state table designed with state transition test technique is NOT correct?
A – “Power On”
B – “TV Play”
C –“ S2”
D –“ S1”
1
3
5
7
26. Inspect the following piece of code: .. How many test cases are needed at least to cover decision coverage testing?
<br>
How many test cases are needed at least to cover decision coverage testing?
2 test cases
3 test cases
4 test cases
5 test cases
You have started specification-based testing of a program. It calculates the greatest common divisor (GCD) of two integers (A and B) greater than zero. calcGCD (A, B);
<br>
Which test technique has been applied in order to determine the test cases A to F?
Boundary value analysis
Equivalence partitioning
State transition testing
Decision table testing.
(x=1, y=1), (x=0, y=0), (x=1, y=0)
(x=1, y=1), (x=1, y=-1), (x=1, y=0)
(x=1, y=1), (x=0, y=0)
(x=1, y=1)
You have become the test manager of a software development project that is already underway. Which questions do you ask FIRST in order to write a test plan and to define the overall testing strategy?
<br>
A. What are the biggest product risks?
B. Where and how are the system requirements specified?
C. Is there already test data available?
D. When is the project due to be finished?
E. Have end-users already been selected as testers?
F. Is a tool for automated testing in place?
A, B and D are true; C, E and F are false
A, C and E are true; B, D and F are false
A, D and F are true; B, C and E are false
B, C and D are true; A, E and F are false
Which of the following details would most likely be included in an incident report?
<br>
I. Identification of the test item (configuration item) and environment
II. Development process characteristics such as organization stability and test process used
III. A review of the test basis, such as requirements, design, interfaces
IV. Scope or degree of the impact on the stakeholders’ interest.
I, II and III
II and III
I and IV
III and IV
Which of the following is characteristics of test management tools?
<br>
A. Logging of test results and generation of progress reports.
B. Improve the efficiency of testing activities by automating repetitive tasks.
C. Independent version control or interface with an external configuration management tool.
D. Assignment of actions to people (e.g. fix or confirmation test)
B & D
A, B & D
A & C
B, C & D
Which of the following testing activities can be automated?
<br>
A. Reviews and inspections
B. Collecting and measurements
C. Test planning
D. Test execution
E. Test data generation
B, D and E are true; A and C are false
A, C and D are true; B and E are false
B, C and E are true; A and D are false
A, B and C are true; D and E are false
