Which of the following is the main difference between quality assurance (QA) and quality control
A state transition diagram describes a control system’s behavior in different operational modes. The initial state is “NORMAL MODE”.
Which ONE of the following test cases covers an INVALID sequence?
The following requirement is given “Set X to be the sum of Y and Z”.
All the following four implementations have bugs.
Which one of the following bugs can be caught by Static Analysis?
Which of the following types of tools is BEST suited for determining source code compliance with the guidelines provided by a coding standard?
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 would be LEAST appropriate as part of an incident report covering the observation of a failure during testing?
For withdrawing money tram an Automated Teller Machine (ATM), the following conditions are required:
- The bank card is valid
- The PIN code is correct
- Money is available in the user's account
The following are some possible interactions between the user and the ATM:
- The entered card is invalid The card is rejected
- The PIN code is wrong The ATM asks for another PIN code
- The requested amount is more than available in the user's account: The ATM asks for another amount
- The requested amount is available in the user's account The ATM dispenses the money
Which test design technique should be used to cover all possible combinations of the in put conditions?
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?
Which ONE of the following options BEST describes the third test quadrant (Q3)?
Which of the following statements is true?
Select exactly one option (1 out of 4)!
Which statement best describes the key difference between a mindset for test activities and a mindset for development activities?
Scenario 1 “Happy Tomatoes” (used for questions 20-22):
An intelligent application for agricultural use incorporates temperature sensors located at different points of an enclosure. The sensors measure and record the temperature at regular intervals and extract the statistical values for these measurements. These values include the average daily temperature.
A new variety of tomatoes is currently being grown and the “World Organization for Happy Tomatoes” has established temperature ranges related to vegetative development.
When the system establishes that the average temperature is within a specific range, it emits a value that will be used to monitor and control the crop.

Using the equivalence partitioning technique, identify the set of input values that provides the HIGHEST coverage.
For the following pseudo-code determine number of tests required for 100% statement coverage
IF Gender = Boy
If Age > 3 AND Age < 5
Shoe Size = 1
ELSE IF Age >=5 AND Age < 7
Shoe Size = 2
ENDIF
ELSE
IF Age > 3 AND Age < 5
Shoe Size = 0
ELSE IF Age >=5 AND Age < 7
Shoe Size = 1
ENDIF
ENDIF
Which of the following is the BEST reason for selecting a particular type of software development lifecycle model?
Which is an advantage of using testers that are independent from the development team?
In maintenance testing, what is the relationship between impact analysis and regression testing?
Which or the following would be a key difference between a peer review of code and static analysis of code using a tool?
Which of the following statements regarding the impact of the chosen software development lifecycle model on testing is true?
You need to test the login page of a web site. The page contains fields for user name and password. Which test design techniques are most appropriate for this case?
Which of the following best describes the relationship between a test progress report and a test summary report?
Which of the statements on confirmation testing and regression testing is correct?
You work as a test manager for a supplier of PC games which can be purchased and downloaded via an online store. A tester from your team recorded the following failure caused by a defect:
Issue ID: DEF00223167
Title: Saving after shopping in online shop fails
Date: 2023-04-18
Tester: Sabine Meier
Description: "Saving the game immediately after purchasing it in the online store fails. As a result, the purchase is paid for, but the goods are not delivered."
Attached data: "log.txt", "screen1.bmp", "screen2.bmp"
During the review of the defect report, you notice that at least one important piece of information is missing for defining how to deal with the defect. Which one?
A software application incorrectly provided customers discounts of 50% off their total purchases if the purchases exceeded S100. It was discovered through an audit that the discount should have been only 5% off these purchases. A root cause analysis uncovered that the requirements Incorrectly stated 50% instead of 5% in this scenario.
Which of the following MOST accurately reflects this scenario?
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 does NOT describe good testing practice, regardless of the SDLC chosen?
Which of the following BEST describes a test summary report for executive-level employees
A Static analysis tool analyzes a given program's CONTROL FLOW among other things. Which of the following options represents the most likely outcome of the control flow analysis:
Which of the following statements regarding the testing quadrants model is correct?
Which test approach will best fit a new project, with little documentation and high probability for bugs?
A software system checks age in order to determine which welcome screen to display. Age groups are:
Group I: 0-12
Group II; 13-18
Group III: over 18
Which of the below represent boundary values?
Following a risk-based testing approach you have designed 10 tests to cover a product risk with a high-risk level. You want to estimate, adopting the three-point test estimation technique, the test effort required to reduce the risk level to zero by executing those 10 tests. You made the following three initial estimates:
• most optimistic = 6 person hours
• most likely = 30 person hours
• most pessimistic = 54 person hours
Based only on the given information, which of the following answers about the three-point test estimation technique applied to this problem is true?
Which of the following is an example of tasks most associated with the test design activity?
For each test case to be executed, the following table specifies its dependencies and the required configuration of the test environment for running such test case:

Assume that C0NF1 is the initial configuration of the test environment Based on this assumption, which of the following is a test execution schedule that is compatible with the specified dependencies and allows minimising the number of switches between the different configurations of the test environment^
Which of the following would be the LEAST likely to be used as the basis for a test exit criteria?
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?
Which of the following statements best describes the difference between product risk and project risk in software testing?
Select which of the following statements describe the key principles of software testing?
i. Testing shows the presence of defects, not their absence.
ii. Testing everything Is possible.
iii. Early testing Is more expensive and is a waste of time.
iv. Defects cluster together.
v. Testing is context dependent.
vi. Beware of the pesticide paradox.
vii. Absence of errors is a fallacy.
Select the correct answer:
Which ONE of the following elements is TYPICALLY used to guide testing during exploratory testing?
Which of the following are valid testing principles?
I) Exhaustive testing is in general impossible.
II) Exhaustive testing should be executed for code intended to be reused.
III) Testing may guarantee that a program is correct.
IV) Testing cannot guarantee that a program is correct.
V) Defects cluster together in certain areas of the product.
Which of the following statements refers to a good testing practice that applies to all software development lifecycles?
Which ONE of the following tools would be MOST SUITABLE for facilitating the creation of test cases, test data, and test procedures?
The following rules determine the annual bonus to be paid to a salesman of a company based on the total annual amount of the sales made (referred to as TAS).
If the TAS is between 50k€ and 80k€, the bonus is 10%. If the TAS exceeds 80k€ by a value not greater than 40k€, the bonus is 15%. Finally, if the TAS
exceeds the maximum threshold which entitles to a 15% bonus, the bonus is 22%.
Consider applying equivalence partitioning to the TAS (Note: 1k€ = 1000 euros).
Which one of the following answers contain only test cases that belong to the same equivalence partition?
Given the following User Story: "As an online customer, I would like to be able to cancel the purchase of an individual item from a shopping list so that it only displays the relevant items, in less than 1 second", which of the following can be considered as applicable acceptance test cases?
I.Click on my online shopping list, select the unwanted Item, delete the unwanted item, the unwanted Item is deleted from the shopping list in less than 1 second.
ii.Click on my online shopping list, select all the items, delete all the items, the unwanted items are deleted from the shopping list in less than 1 second.
iii.Tab to the online shopping list and press enter, select the unwanted item, delete the unwanted item, the unwanted item is deleted from the shopping list In less than 1 second.
Iv. Click on the checkout button, select the payment method, make payment, confirmation received of payment and shipping date.
v. Click on my shopping list, select the unwanted Item, delete the unwanted item, the unwanted item is deleted from the shopping list.
Select the correct answer:
Which of the following statements about static testing and dynamic testing is TRUE?
Which of the following is a role that is usually responsible for documenting the findings (e.g., action items, decisions, recommendations) made by the review team as part of a typical formal review?
Pariksha labs is a mature software testing company. They are TMMi level 5 certified. Their testing processes are well defined. Which ONE of the following statements is likely to be CORRECT about them?
Which ONE of the following statements about state transition testing is correct?
Which of the following statements is LEAST likely to be describing component testing?
In the newest version of payroll system number of changes were made. As a tester you got a task to perform regression and confirmation tests. Which of the following project activities are related to confirmation testing?
Which of the following statements is assigned correctly as a project or product risk?
Which of the following tools is most likely to detect defects in functions or methods in source code?
Which of the following options is a success factor for formal reviews (e.g. inspections)?
What role in a formal or technical review should mediate between different opinions to ensure an effective review?
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 options is correct with respect to the differentiation of black-box techniques, white-box techniques, and experience-based testing?
Given the following examples of entry and exit criteria:
1.A defined level of code coverage has been achieved
2.The test automation tool has been installed and properly configured
3.The number of unresolved defects is within the predefined limit
4.The performance test environment has been set-up and is available
5.The user stories have proper acceptance criteria defined
6.The testing budget has been spent and the project sponsor bears the risk of not testing any further
Which of the following BEST categorizes them as entry and exit criteria:
Which of the following statements about reviews are TRUE?
I. In walkthroughs the review meeting is typically led by the author.
II Inspection is characterized by an open-ended review meeting
III Preparation before the review meeting is part of informal reviews
IV Management rarely participates in technical review meetings
Which ONE of the following statements would you expect to be the MOST DIRECT advantage of the whole-team approach?
Match each objective to the correct test level
Objective:
A)Verifying whetherthe functionalandnon-functlonalbehaviorsof the system are as designed andspecified.
B)Verifying whetherthe functionalandnon-functlonalbehaviorsof the interfaces are as designed.
C)Verifying whetherthe functionalandnon-functionalbehaviorsof the components are as designedand specified.
D)Establishing confidence in the quality of the systemas a whole.
Test Level:
1.Component testing.
2.Integration testing.
3.System testing.
4.Acceptance testing.
A software development company invests heavily in tools to support the entire software development lifecycle, including testing. They have a tool that allows automated creation and installation of builds and subsequent execution of various types of automated tests. Which ONE of the following is a CORRECT statement about this type of test tool?
Which of the following characterizations applies to a test tool used for the analysis of a developer's code prior to its execution?
Given some statements about independence of testing
i. Independence is a replacement for familiarity with the code
ii. Independence helps remove the biases produced because of own work
iii. Similar kind of failures can be detected by anyone
iv Assumptions by different people are different revealing weaknesses
Which of the following CORRECTLY represents the benefits?
What type of testing measures its effectiveness by tracking which lines of code were executed by the tests?
The ISTOB glossary defines Quality Assurance as: "Pail or quality management focused on providing confidence that quality requirements will be fulfilled. Which of the following Is not one of the Quality Assurance activity?
Which of the following statements about estimation of the test effort is WRONG?
Match the Work Product with the category it belongs to:
Work Product: 1. Risk register 2 Risk information
3. Test cases
4. Test conditions
Category of work products:
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 statements about Experience Based Techniques (EBT) is correct?
A financial institution is to implement a system that calculates the interest rates paid on investment accounts based on the sum invested.
You are responsible for testing the system and decide to use equivalence partitioning and boundary value analysis to design test cases. The requirements describe the following expectations:
Investment range| Interest rate
R500 to RIO 00010%
RIO 001 to R50 00011%
R50 001 to RlOOOOO12%
RIOOOOl to R500 000| 13%
What is the minimum number of test cases required to cover all valid equivalence partitions for calculating the interest?
Which of the following statements regarding the test-first approach (principle of early testing) is true?
You are a test manager responsible for implementing risk-based testing in your organization which deals with software in the healthcare domain. You are writing a handbook of various product risk mitigation options. Which ONE of the following options correctly represent the correct mitigation options?
Which ONE of the following options identifies the perspectives through which a collective authorship process generates a shared vision of user stories?
Which of the following is a test task that usually occurs during test implementation?
Which of the following is a test-first approach, where tests that express a shared understanding from stakeholders of how the application is expected to work, are first written in business-readable language (following the Given/When/Then format), and then made executable to drive development?
Which of the following activities does NOT belong to a typical technical review?
The following sentences refer to the 'Standard for Software Test Documentation' specification (IEEE 829).
Which sentence is correct?
Consider the following user story about the authentication functionality of an e-commerce website:
"As a logged-in user, I want to change my current password with a new one, so that I can make my account safer".
The following are some of the acceptance criteria defined for the user story:
[a] After the logged-in user has successfully changed his password, an email confirming the change must be sent to him
[b] To successfully change the password, the logged-in user must enter the current password, enter a new valid password, and finally confirm by pressing the 'Change Password' button
[c] To be valid, the new password entered by the logged-in user is not only required to meet the criteria related to the length and type of characters, but must also be different form the last 5 passwords of that user
[d] A dedicated error message must be presented to the logged-in user when he enters a wrong current password
[e] A dedicated error message must be presented to the logged-in user when he enters the correct current password, but enters an invalid password
Based only on the given information, which of the following ATDD tests is most likely to be written first?
Which sequence of stated in the answer choices is correct in accordance with the following figure depicting the life-cycle of a defect?

The following chart represents metrics related to testing of a project that was competed. Indicate what is represented by tie lines A, B and the axes X.Y

A)

B)

C)

D)
Which of the following statements are true?
1. Early and frequent feedback helps to avoid requirements misunderstanding.
2. Early feedback allows teams to do more with less.
3. Early feedback allows the team to focus on the most Important features.
4. Early and frequent feedback clarifies customer feedback by applying static testing techniques
Select the correct answer:
Which or the following is a valid collection of equivalence classes for the following problem: An integer field shall contain values from and including 1 to and including 15.
Which of the following is not an example of a typical generic skill required for testing?