Sample Exam Set A Flashcards
Question #1 (1 Point)
Which of the following statements describe a valid test objective?
a) To prove that there are no unfixed defects in the system under test
b) To prove that there will be no failures after the implementation of the system into production
c) To reduce the risk level of the test object and to build confidence in the quality level
d) To verify that there are no untested combinations of inputs
Select ONE option.
C
a) Is not correct. It is impossible to prove that there are no defects anymore in the system under test. See testing principle 1
b) Is not correct. See testing principle 7
c) Is correct. Testing finds defects and failures which reduces the level of risk and at the same time gives more confidence in the quality level of the test object
d) Is not correct. It is impossible to test all combinations of inputs (see testing principle 2)
Question #2 (1 Point)
Which of the following options shows an example of test activities that contribute to success?
a) Having testers involved during various software development lifecycle (SDLC) activities will help to detect defects in work products
b) Testers try not to disturb the developers while coding, so that the developers write better code
c) Testers collaborating with end users help to improve the quality of defect reports during component integration and system testing
d) Certified testers will design much better test cases than non-certified testers
Select ONE option.
A
a) Is correct. It is important that testers are involved from the beginning of the software development lifecycle (SDLC). It will increase understanding of design decisions and will detect defects early.
b) Is not correct. Both developers and testers will have more understanding of each other’s work products and how to test the code
c) Is not correct. End users will not help the testers in increasing the quality of defect reports; also, users usually do not participate in low-level testing levels like integration testing
d) Is not correct. Being certified does not automatically mean that the tester will be better in test design
Question #3 (1 Point)
You have been assigned as a tester to a team producing a new system incrementally. You have noticed that no changes have been made to the existing regression test cases for several iterations and no new regression defects were identified. Your manager is happy, but you are not. Which testing principle explains your skepticism?
a) Tests wear out
b) Absence-of-errors fallacy
c) Defects cluster together
d) Exhaustive testing is impossible
Select ONE option.
A
a) Is correct. This principle means that if the same tests are repeated over and over again, eventually these tests no longer find any new defects. This is probably why the tests all passed in this release as well
b) Is not correct. This principle says about the mistaken belief that just finding and fixing a large number of defects will ensure the success of a system
c) Is not correct. This principle says that a small number of components usually contain most of the defects
d) Is not correct. This principle states that testing all combinations of inputs and preconditions is not feasible
Question #4 (1 Point)
You work in a team that develops a mobile application for food ordering. In the current iteration the team decided to implement the payment functionality.
Which of the following activities is a part of test analysis?
a) Estimating that testing the integration with the payment service will take 8 person-days
b) Deciding that the team should test if it is possible to properly share payment between many users
c) Using boundary value analysis (BVA) to derive the test data for the test cases that check the correct payment processing for the minimum allowed amount to be paid
d) Analyzing the discrepancy between the actual result and expected result after executing a test case that checks the process of payment with a credit card, and reporting a defect
Select ONE option.
B
a) Is not correct. Estimating the test effort is part of test planning
b) Is correct. This is an example of defining test conditions which is a part of test analysis
c) Is not correct. Using test techniques to derive coverage items is a part of test design
d) Is not correct. Reporting defects found during dynamic testing is a part of test execution
Question #5 (1 Point)
Which of the following factors (i-v) have SIGNIFICANT influence on the test process?
i. The SDLC
ii. The number of defects detected in previous projects
iii. The identified product risks
iv. New regulatory requirements forcing formal white-box testing
v. The test environment setup
a) i, ii have significant influence
b) i, iii, iv have significant influence
c) ii, iv, v have significant influence
d) iii, v have significant influence
Select ONE option.
B
i. Is true. The SDLC has an influence on the test process
ii. Is false. The number of defects detected in previous projects may have some influence, but this is not as significant as i, iii and iv
iii. Is true. The identified product risks are one of the most important factors influencing the test process
iv. Is true. Regulatory requirements are important factors influencing the test process
v. Is false. The test environment has no significant influence on the test process
Thus:
a) Is not correct
b) Is correct
c) Is not correct
d) Is not correct
Question #6 (1 Point)
Which TWO of the following tasks belong MAINLY to a testing role?
a) Configure test environments
b) Maintain the product backlog
c) Design solutions to new requirements
d) Create the test plan
e) Report on achieved coverage
Select TWO option.
A, E
a) Is correct. This is done by the testers
b) Is not correct. The product backlog is built and maintained by the product owner
c) Is not correct. This is done by the development team
d) Is not correct. This is a managerial role
e) Is correct. This is done by the testers
Question #7 (1 Point)
Which of the following skills (i-v) are the MOST important skills of a tester?
i. Having domain knowledge
ii. Creating a product vision
iii. Being a good team player
iv. Planning and organizing the work of the team
v. Critical thinking
a) ii and iv are important
b) i, iii and v are important
c) i, ii and v are important
d) iii and iv are important
Select ONE option.
B
i. Is true. Having domain knowledge is an important tester skill
ii. Is false. This is a task of the business analyst together with the business representative
iii. Is true. Being a good team player is an important skill
iv. Is false. Planning and organizing the work of the team is a task of the test manager or, mostly in an Agile software development project, the whole team and not just the tester
v. Is true. Critical thinking is one of the most important skills of testers
Thus:
a) Is not correct
b) Is correct
c) Is not correct
d) Is not correct
Question #8 (1 Point)
How is the whole team approach present in the interactions between testers and business
representatives?
a) Business representatives decide on test automation approaches
b) Testers help business representatives to define test strategy
c) Business representatives are not part of the whole team approach
d) Testers help business representatives to create suitable acceptance tests
Select ONE option.
D
a) Is not correct. The test automation approach is defined by testers with the help of developers and business representatives
b) Is not correct. The test strategy is decided in collaboration with the developers
c) Is not correct. Testers, developers, and business representatives are part of the whole team approach
d) Is correct. Testers will work closely with business representatives to ensure that the desired quality levels are achieved. This includes supporting and collaborating with them to help them create suitable acceptance tests
Question #9 (1 Point)
Consider the following rule: “for every SDLC activity there is a corresponding test activity”. In which SDLC models does this rule hold?
a) Only in sequential SDLC models
b) Only in iterative SDLC models
c) Only in iterative and incremental SDLC models
d) In sequential, incremental, and iterative SDLC models
Select ONE option.
D
a) Is not correct
b) Is not correct
c) Is not correct
d) Is correct. This rule holds for all SDLC models
Question #10 (1 Point)
Which of the following statements BEST describes the acceptance test-driven development (ATDD) approach?
a) In ATDD, acceptance criteria are typically created based on the given/when/then format
b) In ATDD, test cases are mainly created at component testing and are code-oriented
c) In ATDD, tests are created, based on acceptance criteria to drive the development of the related software
d) in ATDD, tests are based on the desired behavior of the software, which makes it easier for team members to understand them
Select ONE option.
C
a) Is not correct. It is more often used in behavior-driven development (BDD)
b) Is not correct. It is the description of test-driven development (TDD)
c) Is correct. In acceptance test-driven development (ATDD) tests are written from acceptance criteria as part of the design process
d) Is not correct. It is used in BDD
Question #11 (1 Point)
Which of the following is NOT an example of the shift left approach?
a) Reviewing the user requirements before they are formally accepted by the stakeholders
b) Writing a component test before the corresponding code is written
c) Executing a performance efficiency test for a component during component testing
d) Writing a test script before setting up the configuration management process
Select ONE option.
D
a) Is not correct. Early review is an example of the shift left approach
b) Is not correct. TDD is an example of the shift left approach
c) Is not correct. Early non-functional testing is an example of the shift left approach
d) Is correct. Test scripts should be subject to configuration management, so it makes no sense to create the test scripts before this process is set up
Question #12 (1 Point)
Which of the arguments below would you use to convince your manager to organize retrospectives
at the end of each release cycle?
a) Retrospectives are very popular these days and clients would appreciate it if we added them to our processes
b) Organizing retrospectives will save the organization money because without them end user representatives do not provide immediate feedback about the product
c) Process weaknesses identified during the retrospective can be analyzed and serve as a to
do list for the organization’s continuous process improvement program
d) Retrospectives embrace five values including courage and respect, which are crucial to
maintain continuous improvement in the organization
Select ONE option.
C
a) Is not correct. Retrospectives are more useful for identifying improvement opportunities and have little importance for clients
b) Is not correct. Business representatives are not giving feedback about the product itself. Therefore, there is no financial gain to the organization
c) Is correct. Regularly conducted retrospectives, when appropriate follow up activities occur, are critical to continual improvement of development and testing
d) Is not correct. Courage and respect are values of Extreme Programming and are not closely related to retrospectives
Question #13 (1 Point)
Which types of failures (1-4) fit which test levels (A-D) BEST?
- Failures in system behavior as it deviates from the user’s business needs
- Failures in communication between components
- Failures in logic in a module
- Failures in not correctly implemented business rules
A. Component testing
B. Component integration testing
C. System testing
D. Acceptance testing
a) 1D, 2B, 3A, 4C
b) 1D, 2B, 3C, 4A
c) 1B, 2A, 3D, 4C
d) 1C, 2B, 3A, 4D
Select ONE option.
A
Considering:
The test basis for acceptance testing is the user’s business needs (1D)
Communication between components is tested during component integration testing (2B)
Failures in logic can be found during component testing (3A)
Business rules are the test basis for system testing (4C)
Thus:
a) Is correct
b) Is not correct
c) Is not correct
d) Is not correct
Question #14 (1 Point)
You are testing a user story with three acceptance criteria: AC1, AC2 and AC3. AC1 is covered by test case TC1, AC2 by TC2, and AC3 by TC3. The test execution history had three test runs on three
consecutive versions of the software as follows (refer to attached image)
Tests are repeated once you are informed that all defects found in the test run are corrected and a new version of the software is available.
Which of the above tests are executed as regression tests?
a) Only 4, 7, 8, 9
b) Only 5, 7
c) Only 4, 6, 8, 9
d) Only 5, 6
Select ONE option.
B
Because TC1 and TC3 failed in Execution 1 (i.e., test (1) and test (3)), test (4) and test (6) are confirmation tests.
Because TC2 and TC3 failed in Execution 2 (i.e., tests (5) and (6)), test (8) and test (9) are also confirmation tests.
TC2 passed in Execution 1 (i.e., test (2)), so test (5) is a regression test.
TC1 passed in the Execution 2 (i.e., test (4)), so test (7) is also a regression test.
Thus:
a) Is not correct
b) Is correct
c) Is not correct
d) Is not correct
Question #15 (1 Point)
Which of the following is NOT a benefit of static testing?
a) Having less expensive defect management due to the ease of detecting defects later in the SDLC
b) Fixing defects found during static testing is generally much less expensive than fixing defects
found during dynamic testing
c) Finding coding defects that might not have been found by only performing dynamic testing
d) Detecting gaps and inconsistencies in requirements
Select ONE option.
A
a) Is correct. Defect management is no less expensive. Finding and fixing defects later in SDLC is more costly
b) Is not correct. This is a benefit of static testing
c) Is not correct. This is a benefit of static testing
d) Is not correct. This is a benefit of static testing
Question #16 (1 Point)
Which of the following is a benefit of early and frequent feedback?
a) It improves the test process for future projects
b) It forces customers to prioritize their requirements based on agreed risks
c) It is the only way to measure the quality of changes
d) It helps avoid requirements misunderstandings
Select ONE option.
D
a) Is not correct. Feedback can improve the test process, but if one only wants to improve future projects, the feedback does not need to come early or frequently
b) Is not correct. Feedback is not used to prioritize requirements
c) Is not correct. The quality of changes can be measured in multiple ways
d) Is correct. Early and frequent feedback allows for the early communication of potential quality problems