40 Questions Quiz 10 (361-400)

Beschreibung

Quiz am 40 Questions Quiz 10 (361-400), erstellt von Daniel Neag am 04/12/2017.
Daniel Neag
Quiz von Daniel Neag, aktualisiert more than 1 year ago
Daniel Neag
Erstellt von Daniel Neag vor mehr als 6 Jahre
68
0

Zusammenfassung der Ressource

Frage 1

Frage
A program with high cyclometic complexity is almost likely to be:
Antworten
  • A. Large
  • B. Small
  • C. Difficult to write
  • D. Difficult to test

Frage 2

Frage
Which of the following is the odd one out?
Antworten
  • A. White box
  • B. Glass box
  • C. Structural
  • D. Functional

Frage 3

Frage
Which of the following techniques are black box techniques?
Antworten
  • 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

Frage 4

Frage
What is the KEY difference between black-box and white-box testing?
Antworten
  • 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

Frage 5

Frage
What technique captures system requirements that contain logical conditions?
Antworten
  • A. Boundary value
  • B. Equivalence partition
  • C. Decision table
  • D. State transition

Frage 6

Frage
What makes an inspection different from other review types?
Antworten
  • 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

Frage 7

Frage
Why does the boundary value analysis provide good test cases?
Antworten
  • 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

Frage 8

Frage
If a program is tested and 100% branch coverage is achieved, which of the following coverage criteria is then guaranteed to be achieved?
Antworten
  • A. 100% Equivalence class coverage
  • B. 100% Condition coverage and 100% Statement coverage
  • C. 100% Statement coverage
  • D. 100% Multiple condition coverage

Frage 9

Frage
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?
Antworten
  • A. Logic-based testing
  • B. Use-case-based testing
  • C. State transition testing
  • D. Systematic testing according to the V-model

Frage 10

Frage
In system testing...
Antworten
  • 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

Frage 11

Frage
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
Antworten
  • A. I, II and III are correct
  • B. I is correct
  • C. I, III and IV are correct

Frage 12

Frage
Which of the following activities differentiate a walkthrough from a formal review?
Antworten
  • 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

Frage 13

Frage
Why is testing necessary?
Antworten
  • 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.

Frage 14

Frage
In foundation level syllabus you will find the main basic principles of testing. Which of the following sentences describes one of these basic principles?
Antworten
  • 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.

Frage 15

Frage
Which of the following is true
Antworten
  • 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

Frage 16

Frage
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?
Antworten
  • A. 2
  • B. Indefinite
  • C. 1
  • D. 4

Frage 17

Frage
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?
Antworten
  • 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

Frage 18

Frage
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
Antworten
  • 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

Frage 19

Frage
Which of the following is correct about static analysis tools
Antworten
  • 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

Frage 20

Frage
Which of the following is most often considered as components interface bug?
Antworten
  • 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

Frage 21

Frage
Which of the following is correct about static analysis tools?
Antworten
  • 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

Frage 22

Frage
Which of the following list contains only non-functional tests?
Antworten
  • 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

Frage 23

Frage
Without testing all possible transitions, which test suite will test all marital statuses?
Antworten
  • 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

Frage 24

Frage
What test items should be put under configuration management?
Antworten
  • 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

Frage 25

Frage
WHILE (condition A) Do B END WHILE How many paths should be tested in this code in order to achieve 100% path coverage?
Antworten
  • A. One
  • B. Indefinite
  • C. Two
  • D. Four

Frage 26

Frage
What is the purpose of test exit criteria in the test plan?
Antworten
  • 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

Frage 27

Frage
If a program is tested and 100% condition coverage is achieved, which of the following coverage criteria is then guaranteed to be achieved?
Antworten
  • 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%

Frage 28

Frage
Using the diagram below, which test suite will uncover invalid state transitions for employee status reporting software?
Antworten
  • 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

Frage 29

Frage
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
Antworten
  • A. S4, T3, U2, V1
  • B. S1, T2, U3, V4
  • C. S2, T3, U1, V4
  • D. S3, T4, U2, V1

Frage 30

Frage
Which of the following statements is correct?
Antworten
  • 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

Frage 31

Frage
Which of the following project inputs influence testing? (I) Contractual requirements (II) Legal requirements (III) Industry standards (IV) Application risk (V) Project size
Antworten
  • A. (I) through (III) are correct
  • B. All alternatives are correct
  • C. (II) and (V) are correct
  • D. (I), (III) and (V) are correct

Frage 32

Frage
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
Antworten
  • A. I and II
  • B. I, III; and IV
  • C. II, IV, and V
  • D. III and IV

Frage 33

Frage
Maintenance testing is:
Antworten
  • 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

Frage 34

Frage
Why is incremental integration preferred over "big bang" integration?
Antworten
  • 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

Frage 35

Frage
V-Model is:
Antworten
  • 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

Frage 36

Frage
Which of the following items need not to be given in an incident report?
Antworten
  • 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

Frage 37

Frage
Who should be responsible for coordinating the test strategy with the project manager and others?
Antworten
  • A. Tester
  • B. Developer
  • C. Customer
  • D. Test leader

Frage 38

Frage
Acceptance testing means
Antworten
  • 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

Frage 39

Frage
The _______ testing should include operational tests of the new environment as well as of the changed software
Antworten
  • A. System Testing
  • B. Integration testing
  • C. Component testing
  • D. Maintenance testing

Frage 40

Frage
Using the diagram below, which test suite will check for ALL valid state transitions using the LEAST effort?
Antworten
  • 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
Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

Zeiten Englisch
anna.grillborzer0656
Elektromagnetismus
Peter Kasebacher
Statistik und Differenzialgleichungen
barbara91
AOW - Psych
Aydan Altuner
Grundlagenwissen DaZ
p s
PuKW STEP6 - Hummel
Salome Jeong
Vetie - Innere Medizin 2013
Fioras Hu
METH QUALI SS 2019
Caroline Hannah
MS-1.3 Folienpaket 3
Lukas Imwalle
Vetie: Fleisch 2019 Matrikel 14
Johanna Tr