Questão 1
Questão
A program with high cyclometic complexity is almost likely to be:
Responda
-
A. Large
-
B. Small
-
C. Difficult to write
-
D. Difficult to test
Questão 2
Questão
Which of the following is the odd one out?
Responda
-
A. White box
-
B. Glass box
-
C. Structural
-
D. Functional
Questão 3
Questão
Which of the following techniques are black box techniques?
Responda
-
A. State transition testing, code testing, agile testing
-
B. Equivalence partitioning, state transition testing, decision table testing
-
C. System testing, acceptance testing, equivalence partitioning
-
D. System integration testing, system testing, decision table testing
Questão 4
Questão
What is the KEY difference between black-box and white-box testing?
Responda
-
A. Black-box is functional; white-box is structural
-
B. Black-box is functional; white-box is non-functional
-
C. Black-box has a wider statement coverage than white-box
-
D. Black-box can only be performed after white-box
Questão 5
Questão
What technique captures system requirements that contain logical conditions?
Responda
-
A. Boundary value
-
B. Equivalence partition
-
C. Decision table
-
D. State transition
Questão 6
Questão
What makes an inspection different from other review types?
Responda
-
A. It is led by a trained leader, uses formal entry and exit criteria and checklists
-
B. It is led by the author of the document to be inspected
-
C. It can only be used for reviewing design and code
-
D. It is led by the author, uses checklists, and collects data for improvement
Questão 7
Questão
Why does the boundary value analysis provide good test cases?
Responda
-
A. Because it is an industry standard
-
B. Because errors are frequently made during programming of the different cases near the edges of the range of values
-
C. Because only equivalence classes that are equal from a functional point of view are considered in the test cases
-
D. Because the test object is tested under maximal load up to its performance limits
Questão 8
Questão
If a program is tested and 100% branch coverage is achieved, which of the following coverage criteria is then guaranteed to be achieved?
Responda
-
A. 100% Equivalence class coverage
-
B. 100% Condition coverage and 100% Statement coverage
-
C. 100% Statement coverage
-
D. 100% Multiple condition coverage
Questão 9
Questão
A defect management system shall keep track of the status of every defect registered and enforce the rules about changing these states. If your task is to test the status tracking, which method would be best?
Responda
-
A. Logic-based testing
-
B. Use-case-based testing
-
C. State transition testing
-
D. Systematic testing according to the V-model
Questão 10
Questão
In system testing...
Responda
-
A. Both functional and non-functional requirements are to be tested
-
B. Only functional requirements are tested; non-functional requirements are validated in a review
-
C. Only non-functional requirements are tested; functional requirements are validated in a review
-
D. Only requirements which are listed in the specification document are to be tested
Questão 11
Questão
Integration testing has following characteristics
I. It can be done in incremental manner
II. It is always done after system testing
III. It includes functional tests
IV. It includes non-functional tests
Responda
-
A. I, II and III are correct
-
B. I is correct
-
C. I, III and IV are correct
Questão 12
Questão
Which of the following activities differentiate a walkthrough from a formal review?
Responda
-
A. A walkthrough does not follow a defined process
-
B. For a walkthrough individual preparation by the reviewers is optional
-
C. A walkthrough requires meeting
-
D. A walkthrough finds the causes of failures, while formal review finds the failures
Questão 13
Questão
Why is testing necessary?
Responda
-
A. Because testing is good method to make there are not defects in the software
-
B. Because verification and validation are not enough to get to know the quality of the software
-
C. Because testing measures the quality of the software system and helps to increase the quality
-
D. Because testing finds more defects than reviews and inspections.
Questão 14
Questão
In foundation level syllabus you will find the main basic principles of testing. Which of the following sentences describes one of these basic principles?
Responda
-
A. Complete testing of software is attainable if you have enough resources and test tools
-
B. With automated testing you can make statements with more confidence about the quality of a product than with manual testing
-
C. For a software system, it is not possible, under normal conditions, to test all input and output combinations.
-
D. A goal of testing is to show that the software is defect free.
Questão 15
Questão
Which of the following is true
Responda
-
A. Testing is the same as quality assurance
-
B. Testing is a part of quality assurance
-
C. Testing is not a part of quality assurance
-
D. Testing is same as debugging
Questão 16
Questão
This part of a program is given:
WHILE (condition A) Do B
END WHILE
How many decisions should be tested in this code in order to achieve 100% decision coverage?
Responda
-
A. 2
-
B. Indefinite
-
C. 1
-
D. 4
Questão 17
Questão
In a flight reservation system, the number of available seats in each plane model is an input. A plane may have any positive number of available seats, up to the given capacity of the plane. Using Boundary Value analysis, a list of available � seat values were generated. Which of the following lists is correct?
Responda
-
A. 1, 2, capacity -1, capacity, capacity plus 1
-
B. 0, 1, capacity, capacity plus 1
-
C. 0, 1, 2, capacity plus 1, a very large number
-
D. 0, 1, 10, 100, capacity, capacity plus one
Questão 18
Questão
Which of 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
Responda
-
A. Less than 1, 1 through 15, more than 15
-
B. Negative numbers, 1 through 15, above 15
-
C. Less than 1, 1 through 14, more than 15
-
D. Less than 0, 1 through 14, 15 and more
Questão 19
Questão
Which of the following is correct about static analysis tools
Responda
-
A. They help you find defects rather than failures
-
B. They are used by developers only
-
C. They require compilation of code
-
D. They are useful only for regulated industries
Questão 20
Questão
Which of the following is most often considered as components interface bug?
Responda
-
A. For two components exchanging data, one component used metric units, the other one used British units
-
B. The system is difficult to use due to a too complicated terminal input structure
-
C. The messages for user input errors are misleading and not helpful for understanding the input error cause
-
D. Under high load, the system does not provide enough open ports to connect to
Questão 21
Questão
Which of the following is correct about static analysis tools?
Responda
-
A. Static analysis tools are used only by developers
-
B. Compilers may offer some support for static analysis
-
C. Static analysis tools help find failures rather than defects
-
D. Static analysis tools require execution of the code to analyze the coverage
Questão 22
Questão
Which of the following list contains only non-functional tests?
Responda
-
A. Interoperability (compatibility) testing, reliability testing, performance testing
-
B. System testing, performance testing
-
C. Load testing, stress testing, component testing, portability testing
-
D. Testing various configurations, beta testing, load testing
Questão 23
Questão
Without testing all possible transitions, which test suite will test all marital statuses?
Responda
-
A. SO-S1-S2-S4-S1-S4
-
B. SO-S1-S2-S3-S1-S2
-
C. SO-S1-S4-S1-S2-S3
-
D. SO-S1-S2-S3-S4-S1
Questão 24
Questão
What test items should be put under configuration management?
Responda
-
A. The test object, the test material and the test environment
-
B. The problem reports and the test material
-
C. Only the test object. The test cases need to be adapted during agile testing
-
D. The test object and the test material
Questão 25
Questão
WHILE (condition A)
Do B
END WHILE
How many paths should be tested in this code in order to achieve 100% path coverage?
Responda
-
A. One
-
B. Indefinite
-
C. Two
-
D. Four
Questão 26
Questão
What is the purpose of test exit criteria in the test plan?
Responda
-
A. To specify when to stop the testing activity
-
B. To set the criteria used in generating test inputs
-
C. To ensure that the test case specification is complete
-
D. To know when a specific test has finished its execution
Questão 27
Questão
If a program is tested and 100% condition coverage is achieved, which of the following coverage criteria is then guaranteed to be achieved?
Responda
-
A. 100% branch coverage
-
B. 100% condition coverage and 100% statement coverage
-
C. Equivalence class and boundary value coverage
-
D. No other white box coverage criterion is guaranteed to be fulfilled 100%
Questão 28
Questão
Using the diagram below, which test suite will uncover invalid state transitions for employee status reporting software?
Responda
-
A. Prospective - Active - Resigned - Active - Terminated - Purged
-
B. Prospective - Active - On Leave - Active - Resigned - Retired
-
C. Prospective - Active - Retired - Active - On Leave - Purged
-
D. Prospective - Active - On Leave - Active - Retired - Active
Questão 29
Questão
Which test approaches or strategies are characterized by the descriptions below?
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
Responda
-
A. S4, T3, U2, V1
-
B. S1, T2, U3, V4
-
C. S2, T3, U1, V4
-
D. S3, T4, U2, V1
Questão 30
Questão
Which of the following statements is correct?
Responda
-
A. Static analysis tools produce statistics during program execution
-
B. Configuration management systems allow us to provide accurate defect statistics of different configurations
-
C. Stress testing tools examine the behavior of the test object at or beyond full load
-
D. Performance measurement tools can be used in all phases of software life-cycle
Questão 31
Questão
Which of the following project inputs influence testing?
(I) Contractual requirements
(II) Legal requirements
(III) Industry standards
(IV) Application risk
(V) Project size
Responda
-
A. (I) through (III) are correct
-
B. All alternatives are correct
-
C. (II) and (V) are correct
-
D. (I), (III) and (V) are correct
Questão 32
Questão
Which of the following are USUALLY stated as testing objectives?
I. Finding defects in the software
II. Reducing maintenance costs
II. Confirming that the system works
IV. Assessing the quality of the software
V. Meeting schedule milestones
Responda
-
A. I and II
-
B. I, III; and IV
-
C. II, IV, and V
-
D. III and IV
Questão 33
Questão
Maintenance testing is:
Responda
-
A. Testing management
-
B. Synonym of testing the quality of service
-
C. Triggered by modifications, migration or retirement of existing software
-
D. Testing the level of maintenance by the vendor
Questão 34
Questão
Why is incremental integration preferred over "big bang" integration?
Responda
-
A. Because incremental integration has better early defects screening and isolation ability
-
B. Because "big bang" integration is suitable only for real time applications
-
C. Incremental integration is preferred over "Big Bang Integration" only for "bottom up" development model
-
D. Because incremental integration can compensate for weak and inadequate component testing
Questão 35
Responda
-
A. A software development model that illustrates how testing activities integrate with software development phases
-
B. A software life-cycle model that is not relevant for testing
-
C. The official software development and testing life-cycle model of ISTQB
-
D. A testing life cycle model including unit, integration, system and acceptance phases
Questão 36
Questão
Which of the following items need not to be given in an incident report?
Responda
-
A. The version number of the test object
-
B. Test data and used environment
-
C. Identification of the test case that failed
-
D. The location and instructions on how to correct the fault
Questão 37
Questão
Who should be responsible for coordinating the test strategy with the project manager and others?
Responda
-
A. Tester
-
B. Developer
-
C. Customer
-
D. Test leader
Questão 38
Questão
Acceptance testing means
Responda
-
A. Testing performed on a single stand - alone module or unit of code
-
B. Testing after changes have been made to ensure that no unwanted changes were introduced
-
C. Testing to ensure that the system meets the needs of the organization and end user.
-
D. Users test the application in the developers environment
Questão 39
Questão
The _______ testing should include operational tests of the new environment as well as of the changed software
Responda
-
A. System Testing
-
B. Integration testing
-
C. Component testing
-
D. Maintenance testing
Questão 40
Questão
Using the diagram below, which test suite will check for ALL valid state transitions using the LEAST effort?
Responda
-
A. SO-S1-S2-S4-S1-S4-S1-S2-S3-S1
-
B. SO-S1-S2-S4-S1-S2-S3-S1
-
C. SO-S1-S4-S1-S2-S3-S1
-
D. SO-S1-S2-S4-S1-S4-S1-S2-S3