A document describes the test procedures that have been derived for the identified test sets. Among other things, the order in which the test cases in the corresponding test set are to be executed according to the dependencies described by preconditions and postconditions is specified. This document is a typical work product produced as part of:
A requirement specifies that if the total amount of sales (TAS) made during the year by a corporate seller is 300000€ or more, the bonus that must be paid to the seller is 100% of a certain amount agreed upon at the beginning of the year. The software contains a fault as it implements this requirement with the decision "IF (TAS = 300000)" instead of "IF (TAS >= 300000)". The application of the 3-value boundary value analysis to this problem consists of the following three test cases (TAS is an integer variable):
TC1 = 299999 TC2=300000 TC3=300001
Which of the following statements is true?
You are a tester working on a critical project. Based on the risk analysis you need to decide on the order of test execution. Which of the following lists the correct sequence of test execution? Priority 1 is the highest and Priority 3 is the lowest priority.
Test CasePriorityDependencies
Test A3-
Test B1TestD
TestC2Test A
Test D3•
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?
A new web app aims at offering a rich user experience. As a functional tester, you have run some functional tests to verify that, before releasing the app, such app works correctly on several mobile devices, all of which are listed as supported devices within the requirements specification. These tests were performed on stable and isolated test environments where you were the only user interacting with the application. All tests passed, but in some of those tests you observed the following issue: on some mobile devices only, the response time for two web pages containing images was extremely slow.
Based only on the given information, which of the following recommendation would you follow?
Which of the following statements is CORRECT about the value added by a tester to release planning?
A company runs a pilot project for evaluation of a test automation tool. Which of the following is NOT a valid object of this pilot project?
Which of the following types of tools is best suited for determining source code compliance with the guidelines provided by a coding standard?
Consider the following examples of risks identified in different software development projects:
[I]. It may not be possible to generate the expected workloads to run performance tests, due to the poor hardware equipment of the machines (load injectors) that should generate these workloads
[II]. A user’s session on a web application is not invalidated after a certain period of inactivity (configured by the system administrator) of the user
[III]. The test team will not have an adequate requirements specification (since many requirements will still be missing) by the time test design and analysis activities should begin according to the test plan
[IV]. Following a failure, the system is unable to continue to maintain its pre-failure operation and some data becomes corrupted
Which of the following statements is true?
Which of the following statements refers to good testing practice to be applied regardless of the chosen software development model?
Which of the following is a good testing practice which is applicable INDEPENDENT of the software development lifecycle followed?
You are a tester working on a critical project. Based on the risk analysis you need to decide on the order of test execution. Which of the following lists the correct sequence of test execution? Priority 1 is the highest and Priority 3 is the lowest priority.
Test CasePriorityDependencies
Test A3-
Test B1TestD
TestC2Test A
Test D3•
A requirement specifies that if the total amount of sales (TAS) made during the year by a corporate seller is 300000€ or more, the bonus that must be paid to the seller is 100% of a certain amount agreed upon at the beginning of the year. The software contains a fault as it implements this requirement with the decision "IF (TAS = 300000)" instead of "IF (TAS >= 300000)". The application of the 3-value boundary value analysis to this problem consists of the following three test cases (TAS is an integer variable):
TC1 = 299999 TC2=300000 TC3=300001
Which of the following statements is true?
Which of the following answers describes a reason for adopting experience-based testing techniques?
Which of the following answers describes a reason for adopting experience-based testing techniques?
A program is used to control a manufacturing line (turn machines on and off. start and stop conveyer belts, add raw materials to the flow. etc.). Not all actions are possible at all times. For example, there are certain manufacturing stages that cannot be stopped - unless there is an emergency. A tester attempts to evaluate if all such cases (where a specific action is not allowed) are covered by the tests.
Which coverage metric will provide the needed information for this analysis?
The fact that defects are usually not evenly distributed among the various modules that make up a software application, but rather their distribution tend to reflect the Pareto principle:
Which of the following is a task the Author is responsible for, as part of a typical formal review?
Consider a review for a high-level architectural document written by a software architect. The architect does most of the review preparation work, including distributing the document to reviewers before the review meeting. However, reviewers are not required to analyze the document in advance, and during the review meeting the software architect explains the document step by step. The only goal of this review is to establish a common understanding of the software architecture that will be used in a software development project.
Which of the following review types does this review refer to?
A typical generic skill required for the role of tester is the ability to:
Which of the following statements is CORRECT about the value added by a tester to release planning?
A number of characteristics are given for impact of SDLC on the testing effort.
i.Finishing of requirements review leading to test analysis
ii.Both - static and dynamic testing performed at unit testing level
iii.Frequent regression testing may need to be performed
iv.Extensive product documentation
v.More use of exploratory testing
Which of the following statements is MOST correct?
Which of the following statements about estimation of the test effort is WRONG?
Determining the schedule for each testing activity and test milestones for a test project, using activity estimates, available resources, and other constraints is a typical task performed during:
Which of the following statements correctly describe the business facing quadrant that supports the team?
Which ONE of the following statements does NOT describe how testing contributes to higher quality?
After being in operation for many years, a document management system must be decommissioned as it has reached its end of life. This system will not be replaced by any other new system. A legal obligation provides that all documents within the system must be kept for at least 20 years in a state archive.
Which of the following statements about maintenance testing for decommissioning of this system is true?
A calculator software is used to calculate the result for 5+6.
The user noticed that the result given is 6.
This is an example of;
Determining the schedule for each testing activity and test milestones for a test project, using activity estimates, available resources, and other constraints is a typical task performed during:
Which of the following s the most correct statement about state testing techniques?
Which of the following statements about impact of DevOps on testing is CORRECT?
Which sequence of state transitions is INCORRECT in accordance with the following description?
To provide for disaster recovery a system (designated as A) has been provided with a backup system (designated as B). Only one of them can be active at a time. When A goes down, B becomes active. When A comes back up then B becomes inactive and A becomes active again. However, when A is down and B also goes down then a message is sent to the system administrator. After this once A comes back up, A becomes active or if B comes up then B becomes Active.