ISTQB Foundation Software Testing A

Description

40 questions relating to the ISTQB Foundation software tester qualification syllabus
Robyn Babbage
Quiz by Robyn Babbage, updated more than 1 year ago
Robyn Babbage
Created by Robyn Babbage almost 6 years ago
725
1

Resource summary

Question 1

Question
Which of the problems below BEST characterises a result of a software Failure? (K1)
Answer
  • Damaged reputation
  • Lack of methodology
  • Inadequate training
  • Regulatory compliance

Question 2

Question
What should be taken into account to determine when to stop testing? (K2) I. Technical risk II. Business risk III. Project constraints IV. Product documentation
Answer
  • I and II are true; III and IV are false
  • III is true; I, II and IV are false
  • I, II, and IV are true; III is false
  • I, II, and III are true; IV is false

Question 3

Question
What is the process of analysing and removing causes of failures in software? (K1)
Answer
  • Validation
  • Testing
  • Debugging
  • Verification

Question 4

Question
Which general testing principles are characterised by the descriptions below? (K2) W. Early testing X. Defect clustering Y. Pesticide paradox Z. Absence-of-errors fallacy 1. Testing should start at the beginning of the project 2. Conformance to requirements and fitness for use 3. Small number of modules contain the most defects 4. Test cases must be regularly reviewed and revised
Answer
  • W1, X2, Y3 and Z4
  • W1, X3, Y4 and Z2
  • W2, X3, Y1 and Z4
  • W1, X4, Y2 and Z3

Question 5

Question
Which of the following MAIN activities is part of the fundamental test process? (K1)
Answer
  • Initiating and planning
  • Documenting root causes
  • Capturing lessons learned
  • Planning and control

Question 6

Question
Which are the following are MAJOR test implementation and execution tasks? (K2) I. Repeating test activities II. Creating test suites III. Reporting discrepancies IV. Logging the outcome V. Analysing lessons learned
Answer
  • II, III, and IV
  • I, III, IV, and V
  • I, II, III, IV
  • III, IV, and V

Question 7

Question
What principle is BEST described when test designs are written by a third party? (K1)
Answer
  • Exploratory testing
  • Independent testing
  • Integration testing
  • Interoperability testing

Question 8

Question
Which test levels are USUALLY included in the common type of V-model? (K1)
Answer
  • Integration testing, system testing, acceptance testing, and regression testing
  • Component testing, integration testing, system testing, and acceptance testing
  • Incremental testing, exhaustive testing, exploratory testing, and data driven testing
  • Alpha testing, beta testing, black-box testing, and white-box testing

Question 9

Question
What test can be conducted for off-the-shelf software to get market feedback? (K1)
Answer
  • Beta testing
  • Usability testing
  • Alpha testing
  • COTS testing

Question 10

Question
Who OFTEN performs system testing and acceptance testing, respectively? (K2)
Answer
  • Senior programmers and professional testers
  • Technical system testers and potential customers
  • Independent test team and users of the system
  • Development team and customers of the system

Question 11

Question
What is the key difference between (a) contract and regulation acceptance testing and (b) alpha and beta testing? (K2)
Answer
  • (a) are performed outside the company and (b) are conducted by the test team
  • (a) are conducted by regulators and (b) are performed b system administrators
  • (a) are mandatory test for government applications and (b) are usually optional
  • (a) are for custom-developed software and (b) are for off-the-shelf software

Question 12

Question
Which test measures the system at or beyond the limits of its specified requirements? (K1)
Answer
  • Structural testing
  • Stress testing
  • Error guessing
  • Black-box testing

Question 13

Question
Which test ensures that modifications did not introduce new problems? (K1)
Answer
  • Stress testing
  • Black-box testing
  • Structural testing
  • Regression testing

Question 14

Question
Which typical defects are easier to find using static instead of dynamic testing? (K2) L. Deviation from standards M. Requirements defects N. Insufficient maintainability O. Incorrect interface specifications
Answer
  • L,M,N, and O
  • L and N
  • L,N, and O
  • L, M, and N

Question 15

Question
In a formal review, who is primarily responsible for the documents to be reviewed? (K1)
Answer
  • Author
  • Manager
  • Moderator
  • Reviewers

Question 16

Question
Who typically use static analysis tools? (K1)
Answer
  • Customers and users
  • Developers and designers
  • Business and systems analysts
  • System and acceptance testers

Question 17

Question
Which aspects of testing will establishing traceability help? (K2)
Answer
  • Configuration management and test data generation
  • Test case specification and change control
  • Test condition and test procedure specification
  • Impact analysis and requirements coverage

Question 18

Question
Features to be tested, approach, item pass/fail criteria, and test deliverables should be specified in which document? (K3)
Answer
  • Test case specification
  • Test procedure specification
  • Test plan
  • Test design specification

Question 19

Question
Which test technique is based on requirements specification? (K1)
Answer
  • White-box technique
  • Component testing
  • Black-box technique
  • Data driven testing

Question 20

Question
Which test design techniques should a tester use, respectively, to achieve the following: (a) check the documented features of the system, (b) ensure 100% decision coverage, and (c) detect likely defects and distribution? (K3)
Answer
  • Specification-based, data driven testing, and defect density techniques
  • Specification-based, branch coverage, and exploratory techniques
  • Structure-based, equivalence partitioning, and exploratory techniques
  • Specification-based, structure-based, and experience-based techniques

Question 21

Question
What technique captures system requirements that contain logical conditions? (K1)
Answer
  • Boundary value
  • Equivalence partition
  • Decision table
  • State transition

Question 22

Question
Input and output combinations that will be treated the same way by the system can be tested using which technique? (K1)
Answer
  • Boundary value
  • Equivalence partition
  • Decision table
  • State transition

Question 23

Question
Which test suite will check for an invalid transition using the diagram? (K3)
Answer
  • S0 - S1 - S2 - S3 - S1 - S4
  • S0 - S1 - S4 - S1 - S2 - S3
  • S0 - S1 - S3 - S1 - S2 - S1
  • S0 - S1 - S2 - S3 - S1 - S2

Question 24

Question
How are integration testing and use case testing similar and dissimilar? (K2)
Answer
  • Both checks for interactions: integration for components, use case for actors
  • Both are black-box techniques: integration is low-level, use case is high-level
  • Both are static testing: developers perform integration, users execute use case tests
  • Both are V&V techniques:integration is for validation, use case is for verification

Question 25

Question
How many test cases are needed to achieve 100% decision coverage? (K3) if (p = q){ s = s + 1; if (s < 5) { t = 10; } } else if (p > q) { t = 5; }
Answer
  • 3
  • 6
  • 5
  • 4

Question 26

Question
What analysis determines which parts of the software have been executed? (K1)
Answer
  • Impact analysis
  • Code coverage
  • Gap analysis
  • Cyclomatic complexity

Question 27

Question
Based on the error guessing test design technique, which of the following will an experienced tester MOST LIKELY test in calendar software? (K3) i. First two letters of the month, e.g., MA can represent March or May ii. First letter of the day, e.g., T can mean Tuesday or Thursday iii. Leap year iv. Number of days in a month v. Three-digit days and months
Answer
  • i, ii, iv, and v
  • iii and iv
  • i, ii, iii, and iv
  • i, ii, and v

Question 28

Question
Which input combinations will a knowledgeable tester MOST LIKELY use to uncover potential errors when testing a surname field? (K3)
Answer
  • Johnson, de la Cruz, and Morgan
  • Go, Stephanopoulous, and Venkatsewaran
  • Smith, Smyth, and Smithsonian
  • O'Brien, Zeta-Jones, and Young Pów

Question 29

Question
Which of the following demonstrates independence in testing? (K3) J. Independent testers are external to the organisation K. Independent testers are part of the development team L. Independent testers are from the user community M. Programmers who wrote the code serve as independent testers N. Customers who wrote the requirements serve as independent testers
Answer
  • J, L, and N
  • J, K, L, and N
  • K, M, and N
  • J, L, M, and N

Question 30

Question
Which of the following is a KEY task of a tester? (K1)
Answer
  • Reviewing tests developed by others
  • Writing a test strategy for the project
  • Deciding what should be automated
  • Writing test summary reports

Question 31

Question
In software testing, what is the MAIN purpose of exit criteria? (K1)
Answer
  • To enhance the security of the system
  • To prevent endless loops in codes
  • To serve as an alternative or "Plan B"
  • To define when to stop testing

Question 32

Question
Which test approaches or strategies are characterised by the descriptions below? (K2) S. Analytical approaches T. Model-based approaches U. Methodical approaches V. Consultative approaches 1. Relies on guidelines from domain experts 2. Includes error guessing and fault-attacks 3. Uses statistical information about failure rates 4. Focuses on areas of greatest risk
Answer
  • S4, T3, U2, V1
  • S1, T2, U3, V4
  • S2, T3, U1, V4
  • S3, T4, U2, V1

Question 33

Question
Which of the following can be used to measure progress against the exit criteria? (K2) W. Number of test cases that passed or failed X. Number of defects found in a unit of code Y. Dates for milestones and deliverables Z. Subjective confidence of testers in the product
Answer
  • W, X, Y, and Z
  • W, X, and Y
  • W and X
  • W, X, and Z

Question 34

Question
What type of risk includes potential failure areas in the software? (K1)
Answer
  • Project risks
  • Product risks
  • Economic risks
  • Requirements risks

Question 35

Question
Based on the IEEE standard for Software Test Documentation (IEEE Std 829-1998), in which sections of the test incident report should the following items be recorded? (K3) Sections a) Test incident report identifier b) Summary c) Incident description d) Impact Items 1. Unique identifier 2. Version level of the test items 3. Inputs 4. Expected results 5. Actual results 6. Anomalies 7. Date and time
Answer
  • a:1; b:2 and 7; c:3, 4, and 5; d:6
  • a:1; b:6 and 7; c:3, 4, and 5; d:7
  • a:1; b:2; c:3, 4, 5, 6, and 7
  • a:1; b:6 and 7; c:3, 4, and 5

Question 36

Question
Based on the IEEE Standard for Software Test Documentation (IEEE Std 829-1998), which of the following sections are part of the test summary report? (K2) a) Test summary and report identifier b) Summary c) Variances d) Anomalies e) Comprehensive assessment f) Approvals
Answer
  • a, b, e, and f
  • a, b, c, d, and f
  • a, b, c, e, and f
  • a, b, c, and f

Question 37

Question
What is the name of a skeletal implementation of a software component that is used for testing? (K1)
Answer
  • Use case
  • Domain
  • Driver
  • Stub

Question 38

Question
Which of the following are potential benefits of using test support tools? (K2)
Answer
  • Ensuring greater consistency and minimising software project risks
  • Reducing repetitive work and gaining easy access to test information
  • Performing objective assessment and reducing the need for training
  • Allowing for grater reliance on the tool to automate the test process

Question 39

Question
Which test support tool can be used to enforce coding standards? (K1)
Answer
  • Static analysis tool
  • Performance testing tool
  • Test comparator
  • Test management tool

Question 40

Question
What should be considered when introducing a tool into an organisation? (K1)
Answer
  • Assessing the organisational maturity
  • Counting the number of systems to be tested
  • Calculating the ratio between programmers and testers
  • Reviewing the exit criteria of previous projects.
Show full summary Hide full summary

Similar

ISTQB 2018 Foundation Software Testing 1
Robyn Babbage
Chapter 1 - Quick Quiz - Principles of testing
America LH
Chapter 6 - CTFL ISTQB
America LH
En que Consisten las Pruebas ISTQB Fundation Level I Nro 1. 2
Gregory Diaz
Chapter 3 - CTFL ISTQB
America LH
Chapter 4 - CTFL ISTQB
America LH
7 Principios de las Pruebas ISTQB Fundation Level I Nro 1.3
Gregory Diaz
Examen ISTQB Español Fundation Level-Modelo C - Preguntas
Heidy Blanco
Chapter 5 - CTFL ISTQB
America LH
Simulador C Curso ISTQB Foundation Level 4.0
Oscar Fernando Sanchez Gamez
ISTQB 2018 Foundation Software Testing 2
Robyn Babbage