option
Cuestiones
ayuda
daypo
buscar.php

TEST BORRADO, QUIZÁS LE INTERESE: TEST EXAM ISTQB Set C - 2023

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
TEST EXAM ISTQB Set C - 2023

Descripción:
TEST EXAM ISTQB Set C - 2023

Autor:
AVATAR
gsi
OTROS TESTS DEL AUTOR

Fecha de Creación: 01/07/2024

Categoría: Otros

Número Preguntas: 40
COMPARTE EL TEST
COMENTARNuevo Comentario
No hay ningún comentario sobre este test.
Temario:
Which of the following is a typical test objective? Validating that documented requirements are met Causing failures and identifying defects Initiating errors and identifying root causes Verifying the test object meets user expectations.
Which of the following statements BEST describes the difference between testing and debugging? Testing causes failures while debugging fixes failures Testing is a negative activity while debugging is a positive activity Testing determines that defects exist while debugging removes defects Testing finds the cause of defects while debugging fixes the cause of defects.
The "absence-of-defects fallacy" is one of the principles of testing. Which of the following is an example of addressing this principle in practice? Explaining that it is not possible for testing to show the absence of defects Supporting the end users to perform acceptance testing Ensuring that no implementation defects remain in the delivered system Modifying tests that cause no failures to ensure few defects remain.
Which TWO of the following test activities are MOST likely to involve the application of boundary value analysis and equivalence partitioning? a) Test implementation b) Test design c) Test execution d) Test monitoring e) Test analysis a) and e) b) and e) c) and d) b) and d).
Given the following testware: 1. Coverage items 2. Change requests 3. Test execution schedule 4. Prioritized test conditions And the following test activities A. Test analysis B. Test design C. Test implementation D. Test completion Which of the following BEST shows the testware produced by the activities? 1B, 2D, 3C, 4A 1B, 2D, 3A, 4C 1D, 2C, 3A, 4B 1D, 2C, 3B, 4A.
Which of the following statements about the different testing roles is MOST likely to be CORRECT? In Agile software development, the test management role is the primary responsibility of the team, while the testing role is primarily the responsibility of a single individual from outside the team The testing role is primarily responsible for test monitoring and control, while the test management role is primarily responsible for test planning and test completion In Agile software development, test management activities that span multiple teams are handled by a test manager outside the team, while some test management tasks are handled by the team itself The test management role is primarily responsible for test analysis and test design, while the testing role is primarily responsible for test implementation and execution.
Which of the following is an advantage of the whole-team approach? Teams with no testers Improved team dynamics Specialist team members Larger team sizes.
Which of the following statements about the independence of testing is CORRECT? Independent testers will find defects due to their different technical perspective from developers, but their independence may lead to an adversarial relationship with the developers Developers "familiarity with their own code means they only find a few defects in it, however their shared software background with testers means these defects would also be found by the testers Independent testing requires testers who are outside the developer's team and ideally from outside the organization, however these testers find it difficult to understand the application domain Testers from outside the developer's team are more independent than testers from within the team, but the testers from within the team are more likely to be blamed for delays in product release.
Which of the following is a good testing practice that applies to all software development lifecycles? For each test level, there is a corresponding development level For each test objective, there is a corresponding development objective For every software test activity, there is a corresponding user activity For every software development activity, there is a corresponding test activity.
Which of the following is an example of a test-first approach to development? Component Test-Driven Development Integration Test-Driven Development System Test-Driven Development Acceptance Test-Driven Development.
Which of the following provides the BEST description of the shift-left approach? When agreed by the developers, manual activities on the left-hand side of the test process are automated to support the principle of 'early testing saves time and money' Where cost-effective, test activities are moved to be performed earlier in the software development lifecycle (SDLC) to reduce the total cost of quality by reducing the number of defects found later in the SDLC When they have spare time available, testers are required to automate tests for regression testing, starting with component tests and component integration tests When available, testers are trained to perform tasks early in the SDLC to allow more test activities to be automated later in the SDLC.
Which of the following is LEAST likely to occur as a result of a retrospective? The quality of future test objects improves by identifying improvements in development practices Test efficiency improves by speeding up the configuration of test environments through automation End users' understanding of the development and test processes is improved Automated test scripts are enhanced through feedback from developers.
Which of the following test levels is MOST likely being performed if the testing is focused on validation and is not being performed by testers? Component testing Component integration testing System integration testing Acceptance testing.
The navigation system software has been updated due to it suggesting routes that break traffic laws, such as driving the wrong way down one-way streets. Which of the following BEST describes the testing that will be performed? Only confirmation testing Confirmation testing then regression testing Only regression testing Regression testing then confirmation testing.
Given the following example defects: i. Two different parts of the design specification disagree due to the complexity of the design ii. A response time is too long and so makes users lose patience iii. A path in the code cannot be reached during execution iv. A variable is declared but never subsequently used in the program v. The amount of memory needed by the program to generate a report is too high Which of the following BEST identifies example defects that could be found by static testing (rather than dynamic testing)? ii, v iii, v i, ii, iv i, iii, iv.
Which of the following is a benefit of early and frequent stakeholder feedback? Changes to requirements are understood and implemented earlier It ensures business stakeholders understand user requirements It allows product owners to change their requirements as often as they want End users are told which requirements will not be implemented prior to release.
Given the following review types: 1. Technical review 2. Informal review 3. Inspection 4. Walkthrough And the following descriptions: A. Includes objectives such as gaining consensus, generating new ideas, and motivating authors to improve B. Includes objectives such as educating reviewers, gaining consensus, generating new ideas and detecting potential defects C. The main objective is detecting potential defects and it requires metrics collection to support process improvement D. The main objective is detecting potential defects and it generates no formal documented output Which of the following BEST matches the review types and the descriptions? 1A, 2B, 3C, 4D 1A, 2D, 3C, 4B 1B, 2C, 3D, 4A 1C, 2D, 3A, 4B.
Which of the following is a factor that contributes to a successful review? Ensure management participate as reviewers Split large work products into smaller parts Set reviewer evaluation as an objective Plan to cover one document per review.
What is the MAIN difference between black-box test techniques and experience-based test techniques? The test object The test level at which the test technique is used The test basis The software development lifecycle (SDLC) in which the test technique can be used.
You are testing a PIN validator, which accepts valid PINs and rejects invalid PINs. A PIN is a sequence of digits. A PIN is valid if it consists of four digits, at least two of which are different. You have identified the following valid equivalence partitions: Variable: PIN code length - The partition "length correct" - four-digit PINs - The partition "length incorrect" - PINs with length other than 4 Variable: Number of different digits - The partition "number of different digits correct" - PINs with at least two different digits - The partition "number of different digits incorrect" - PINs with all digits being the same Which of the following is a MINIMUM set of input test data that covers all identified equivalence partitions? 1234, 12345, 1 111, 1111, 1112 1, 1234 12345, 1234.
W A developer was asked to implement the following business rule: You design the test cases using 2-value boundary value analysis. Which of the following sets of test inputs achieves the greatest coverage? 100, 150, 200, 201 99, 100, 200, 201 98, 99, 100, 101 101, 150, 199, 200.
You are working on a project to develop a system to analyze driving test results. You have been asked to design test cases based on the following decision table. What test data will show that there are contradictory rules in the decision table? C1 = T, C2 = T, C3 = F C1 = T, C2 = F, C3 = T C1 = T, C2 = T, C3 = T and C1 = F, C2 = T, C3 = T C1 = F, C2 = F, C3 = F.
You are designing test cases based on the following state transition diagram: What is the MINIMUM number of test cases required to achieve 100% valid transitions coverage? 3 2 5 6.
You want to apply branch testing to the code represented by the following control flow graph. How many coverage items do you need to test? 2 4 8 7.
How can white-box testing be useful in support of black-box testing? White-box coverage measures can help testers evaluate black-box tests in terms of the code coverage achieved by these black-box tests White-box coverage analysis can help testers identify unreachable fragments of the source code Branch testing subsumes black-box test techniques, so achieving full branch coverage guarantees achieving full coverage of any black-box technique White-box test techniques can provide coverage items for black-box techniques.
Consider the following list: - Correct input not accepted - Incorrect input accepted - Wrong output format - Division by zero What test technique is MOST PROBABLY used by the tester who uses this list when performing testing? Exploratory testing Fault attack Checklist-based testing Boundary value analysis.
Which of the following BEST describes how using checklist-based testing can result in increased coverage? Checklist items can be defined at a sufficiently low level of detail, so the tester can implement and execute detailed test cases based on these items Checklists can be automated, so each time an automated test execution covers the checklist items, it results in additional coverage Each checklist item should be tested separately and independently, so the elements cover different areas of the software Two testers designing and executing tests based on the same high-level checklist items will typically perform the testing in slightly different ways.
Which of the following provides the BEST example of a scenario-oriented acceptance criterion? The application must allow users to delete their account and all associated data upon request When a customer adds an item to their cart and proceeds to checkout, they should be prompted to log in or create an account if they haven t already done so IF (contain(product(23).Name, cart.products())) THEN return FALSE The website must comply with the ICT Accessibility 508 Standards and ensure that all content is accessible to users with disabilities.
You are using acceptance test-driven development and designing test cases based on the following user story: Which test case is the MOST reasonable one to test AC3? Check that a Regular user can access floors 1 and 3 Check that a Regular user cannot access floor 4 Check that a Special user can access floor 5 Check that a Special user can access floors 1, 2 and 3.
Which of the following is NOT a purpose of a test plan? To define test data and expected results for component tests and component integration tests To define as exit criteria from the component test level that "100% statement coverage and 100% branch coverage must be achieved" To describe what fields the test progress report shall contain and what should be the form of this report To explain why system integration testing will be excluded from testing, although the test strategy requires this test level.
At the beginning of each iteration, the team estimates the amount of work (in person-days) they will need to complete during the iteration. Let E(n) be the estimated amount of work for iteration n, and let A(n) be the actual amount of work done in iteration n. From the third iteration, the team uses the following estimation model based on extrapolation: What is the estimated amount of work for iteration #5? 10.5 person-days 8.25 person-days 6.5 person-days 9.4 person-days.
You are preparing a test execution schedule for executing seven test cases TC 1 to TC 7. The following figure includes the priorities of these test cases (1=highest priority, 3 = lowest priority). The figure also shows the dependencies between test cases using arrows. For instance, the arrow from TC 4 to TC 5 means that TC 5 can only be executed if TC 4 was previously executed. Which test case should be executed sixth? TC 3 TC 5 TC 6 TC 2.
What does the test pyramid model show? That tests may have different priorities That tests may have different granularity That tests may require different coverage criteria That tests may depend on other tests.
What is the relationship between the testing quadrants, test levels and test types? Testing quadrants represent particular combinations of test levels and test types, defining their location in the software development lifecycle Testing quadrants describe the degree of granularity of individual test types performed at each test level Testing quadrants assign the test types that can be performed to the test levels Testing quadrants group test levels and test types by several criteria such as targeting specific stakeholders.
Which of the following is an example of how product risk analysis may influence the thoroughness and scope of testing? Continuous risk monitoring allows us to identify emerging risk as soon as possible Risk identification allows us to implement risk mitigation activities and reduce the risk level The assessed risk level helps us to select the rigor of testing Risk analysis allows us to derive coverage items.
Which of the following activities in the test process makes the MOST use of test progress reports? Test design Test completion Test analysis Test planning.
Which of the following is NOT an example of how configuration management supports testing? All commits to the repository are uniquely identified and version controlled All changes in the test environment elements are tracked All requirement specifications are referenced unambiguously in test plans All identified defects have an assigned status.
Consider the following defect report for a web-based shopping application: What is the MOST important information that is missing from this report? Name of the tester and date of the report Test environment elements and their version numbers Identification of the test object Impact on the interests of stakeholders.
Tools from which of the following categories help with the organization of test cases, detected defects and configuration management? Test execution and coverage tools Test design and implementation tools Defect management tools Test management tools.
Which of the following is MOST likely to be a benefit of test automation? The capability of generating test cases without access to the test basis The achievement of increased coverage through more objective assessment The increase in test execution times available with higher processing power The prevention of human errors through greater consistency and repeatability.
Denunciar Test