40 Questions Quiz 1 (1-40)

Beschreibung

Quiz am 40 Questions Quiz 1 (1-40), erstellt von Daniel Neag am 03/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
126
0

Zusammenfassung der Ressource

Frage 1

Frage
How many test cases are required to cover 100% 0 - switch coverage respectively from X2?
Antworten
  • A. 4
  • B. 1
  • C. 3
  • D. 2

Frage 2

Frage
From a Testing perspective, what are the MAIN purposes of Configuration Management? i) Identifying the version of software under test. ii) Controlling the version of testware items. iii) Developing new testware items. iv) Tracking changes to testw are items. v) Analysing the need for new testware items.
Antworten
  • A. ii, iv and v.
  • B. ii, iii and iv,
  • C. i, ii and iv.
  • D. i, iii and v.

Frage 3

Frage
Which of the following is a MAJOR task of test planning?
Antworten
  • A. Scheduling test analysis and design tasks.
  • B. Initiating corrective actions.
  • C. Monitoring progress and test coverage.
  • D. Measuring and analyzing results.

Frage 4

Frage
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? a) Summary b) Test incident report identifier c) Test deliverables d) Risks and contingencies e) Variances f) Approvals g) Output specifications
Antworten
  • A. a, e and f
  • B. a, c and d
  • C. a, b and f
  • D. a, d and e

Frage 5

Frage
Which is a potential product risk factor?
Antworten
  • A. Failure of third party vendor
  • B. Training issues
  • C. Problems requirements definition
  • D. Poor software functionality

Frage 6

Frage
Who typically use static analysis tools?
Antworten
  • A. Customers and users
  • B. Developers and designers
  • C. Business and systems analysts
  • D. System and acceptance testers

Frage 7

Frage
Who would USUALLY perform debugging activities?
Antworten
  • A. Developers.
  • B. Analysts.
  • C. Testers.
  • D. Incident Managers.

Frage 8

Frage
Which of the following would you NOT usually find on a software incident report?
Antworten
  • A. The name and / or organisational position of the person raising the problem.
  • B. Version of the Software Under Test.
  • C. Suggestions as to how to fix the problem.
  • D. Actual and expected results.

Frage 9

Frage
Which of the following defines the expected results of a test?
Antworten
  • A. Test case specification.
  • B. Test design specification.
  • C. Test procedure specification.
  • D. Test results.

Frage 10

Frage
Some tools are geared more for developer use. For the 5 tools listed, which statement BEST details those for developers i) Performance testing tools. ii) Coverage measurement tools. iii) Test comparators. iv) Dynamic analysis tools. v) Incident management tools.
Antworten
  • A. i, iii. and iv. are more for developers.
  • B. ii. and iv. are more for developers.
  • C. ii, iii and iv. are more for developers.
  • D. ii. and iii. are more for developers.

Frage 11

Frage
Which of the following is correct?
Antworten
  • A. Impact analysis assesses the effect on the system of a defect found in regression testing.
  • B. Impact analysis assesses the effect of a new person joining the regression test team.
  • C. Impact analysis assesses whether or not a defect found in regression testing has been fixed correctly.
  • D. Impact analysis assesses the effect of a change to the system to determine how much regression testing to do.

Frage 12

Frage
In software testing what is the main purpose of exit criteria?
Antworten
  • A. To enhance the security of the system
  • B. To prevent the endless loops in code.
  • C. To swerve as an alternative or "Plan-B"
  • D. To define when to stop testing

Frage 13

Frage
Given the following state transition diagram Which of the following series of state transitions contains an INVALID transition which may indicate a fault in the system design?
Antworten
  • A. Login Browse Basket Checkout Basket Checkout Pay Logout.
  • B. Login Browse Basket Checkout Pay Logout.
  • C. Login Browse Basket Checkout Basket Logout.
  • D. Login Browse Basket Browse Basket Checkout Pay Logout.

Frage 14

Frage
Which of the following is a KEY test closure task?
Antworten
  • A. Ensuring proper environment setup
  • B. Writing a test summary report
  • C. Assessing the need for additional tests
  • D. Finalizing and archiving testware.

Frage 15

Frage
What is beta testing?
Antworten
  • A. Testing performed by potential customers at the developers location.
  • B. Testing performed by potential customers at their own locations.
  • C. Testing performed by product developers at the customer's location.
  • D. Testing performed by product developers at their own locations.

Frage 16

Frage
Given the following fragment of code, how many tests are required for 100% decision coverage? if width > length then biggest_dimension = width if height > width then biggest_dimension = height end_if else biggest_dimension = length if height > length then biggest_dimension = height end_if end_if
Antworten
  • A. 3
  • B. 4
  • C. 2
  • D. 1

Frage 17

Frage
You have designed test cases to provide 100% statement and 100% decision coverage for the following fragment of code. if width > length then biggest_dimension = width else biggest_dimension = length end_if The following has been added to the bottom of the code fragment above. print "Biggest dimension is " & biggest_dimension print "Width: " & width print "Length: " & length How many more test cases are required?
Antworten
  • A. One more test case will be required for 100 % decision coverage.
  • B. Two more test cases will be required for 100 % statement coverage, one of which will be used to provide 100% decision coverage.
  • C. None, existing test cases can be used.
  • D. One more test case will be required for 100" statement coverage.

Frage 18

Frage
Which defects are OFTEN much cheaper to remove?
Antworten
  • A. Usability defects found by customers
  • B. Defects in infrequently used functionality
  • C. Defects that were detected early
  • D. Minor defects that were found by users

Frage 19

Frage
Which activity in the fundamental test process creates test suites for efficient test execution?
Antworten
  • A. Implementation and execution.
  • B. Planning and control.
  • C. Analysis and design.
  • D. Test closure.

Frage 20

Frage
Which of the following is TRUE?
Antworten
  • A. Confirmation testing is testing fixes to a set of defects and Regression testing is testing to establish whether any defects have been introduced as a result of changes.
  • B. Confirmation testing is testing to establish whether any defects have been introduced as a result of changes and Regression testing is testing fixes to a set of defects.
  • C. Confirmation testing and Regression testing are both testing to establish whether any defects have been introduced as a result of changes.
  • D. Confirmation testing and Regression testing are both testing fixes to a set of defects.

Frage 21

Frage
Given the following decision table: Which of the following test cases and expected results is VALID?
Antworten
  • A. 23 year old in insurance class A Premium is 90 and excess is 2,500.
  • B. 51 year old in insurance class C Premium is 70 and excess is 500.
  • C. 31 year old in insurance class B Premium is 90 and excess is 2,500.
  • D. 43 year old in insurance class C Premium is 70 and excess is 1,000.

Frage 22

Frage
When should configuration management procedures be implemented?
Antworten
  • A. During test planning.
  • B. During test analysis.
  • C. During test execution.
  • D. When evaluating exit criteria

Frage 23

Frage
Which of the following are characteristic of regression testing ? ) Regression testing is run ONLY once ii) Regression testing is used after fixes have been made iii) Regression testing is often automated iv) Regression tests need not be maintained
Antworten
  • A. ii, iv.
  • B. ii, iii.
  • C. i, iii, iv.
  • D. iii.

Frage 24

Frage
Which of the problems below BEST characterize a result of software failure?
Antworten
  • A. Damaged reputation
  • B. Lack of methodology
  • C. Inadequate training
  • D. Regulatory compliance

Frage 25

Frage
Which of the following activities should be performed during the selection and implementation of a testing tool? i) Investigate the organisation's test process. ii) Conduct a proof of concept. iii) Implement the selected tool on a project behind schedule to save time. iv) Identify coaching and mentoring requirements for the use of the selected tool.
Antworten
  • A. i, ii, iii.
  • B. ii, iii, iv.
  • C. i, iii, iv.
  • D. i, ii, iv.

Frage 26

Frage
What is the MAIN benefit of designing tests early in the life cycle?
Antworten
  • A. It is cheaper than designing tests during the test phases.
  • B. It helps prevent defects from being introduced into the code.
  • C. Tests designed early are more effective than tests designed later.
  • D. It saves time during the testing phases when testers are busy.

Frage 27

Frage
Which of the following benefits are MOST likely to be achieved by using test tools? i) Easy to access information about tests and testing. ii) Reduced maintenance of testware. iii) Easy and cheap to implement. iv) Greater consistency of tests.
Antworten
  • A. ii and iv
  • B. ii and iii
  • C. i and iv
  • D. i and iii

Frage 28

Frage
Which of the following can be considered as success factors when deploying a new tool in an organization?
Antworten
  • A. Providing coaching to users and defining usage guidelines
  • B. Monitoring tool usage and reducing the need for risk analysis
  • C. Improving processes and focusing more on component testing
  • D. Assessing testing completion and minimizing code reviews

Frage 29

Frage
What is the purpose of exit criteria?
Antworten
  • A. To define when a test level is complete.
  • B. To determine when a test has completed.
  • C. To identify when a software system should be retired.
  • D. To determine whether a test has passed.

Frage 30

Frage
Which test design technique relies heavily on prior thorough knowledge of the system?
Antworten
  • A. Data driven testing technique
  • B. Experience-based technique
  • C. White-box technique
  • D. Structure-based technique

Frage 31

Frage
With which of the following categories is a test comparator tool USUALLY associated?
Antworten
  • A. Tool support for performance and monitoring.
  • B. Tool support for static testing.
  • C. Tool support for test execution and logging.
  • D. Tool support for the management of testing and tests.

Frage 32

Frage
Match the following terms and statements. 1.Decision Table Testing 2.Decision Testing 3.State Transition Testing 4.Exploratory Testing W. Testing carried out within time boxes to achieve specific test objectives, possibly to complement structured testing. X. A test technique used which may be used to verify different system responses depending on current conditions or previous history. Y. A test technique which combines combinations of inputs that might not otherwise have been exercised during testing. Z. A form of control flow testing based on decision outcomes.
Antworten
  • A. 1Y, 2Z, 3X, 4W.
  • B. 1X ,2W, 3Z, 4Y.
  • C. 1Z, 2X, 3W, 4Y.
  • D. 1Z, 2Y, 3X, 4W.

Frage 33

Frage
Which activities form part of test planning? i) Developing test cases. ii) Defining the overall approach to testing. iii) Assigning resources. iv) Building the test environment v) Writing test conditions.
Antworten
  • A. i, ii & iv are true, iii & v are false.
  • B. ii & iii are true, i, iv & v are false.
  • C. iv & v are true, i, ii & iii are false.
  • D. i, ii & iii are true iv & v are false.

Frage 34

Frage
Which type of test design techniques does the following statement best describe a procedure to derive test cases based on the specification of a component?
Antworten
  • A. Black Box Techniques.
  • B. White Box Techniques.
  • C. Glass Box Techniques.
  • D. Experience Based Techniques.

Frage 35

Frage
For which of the following would a static analysis tool be MOST useful?
Antworten
  • A. Supporting reviews.
  • B. Validating models of the software.
  • C. Testing code executed in a special test harness.
  • D. Enforcement of coding standards.

Frage 36

Frage
Which test approaches or strategies are characterized by the descriptions below? S. Process-compliant approaches T. Heuristic approaches U. Consultative approaches V. Regression-averse approaches 1. Includes reuse of existing test material 2. Listens to suggestions from technology experts 3. Adheres to industry-specific standards 4. Runs test execution and evaluation concurrently
Antworten
  • A. S4, T3, U2, V1
  • B. S1, T2, U3, V4
  • C. S2, T3, U1, V4
  • D. S3, T4, U2, V1

Frage 37

Frage
What principle is BEST described when test designs are written by a third party?
Antworten
  • A. Exploratory testing
  • B. Independent testing
  • C. Integration testing
  • D. Interoperability testing

Frage 38

Frage
Which of the following is a benefit of test independence?
Antworten
  • A. It does not require familiarity with the code.
  • B. It is cheaper than using developers to test their own code.
  • C. It avoids author bias in defining effective tests.
  • D. Testers are better at finding defects than developers.

Frage 39

Frage
The above diagram represents the following paths through the code. A. vwy B. vwz C. vxy D. vxz What is the MINIMUM combination of paths required to provide full statement coverage?
Antworten
  • A. A
  • B. ABD
  • C. ABCD
  • D. ACD

Frage 40

Frage
Which of the following is MOST characteristic of specification based (black-box) techniques?
Antworten
  • A. Test cases can be easily automated.
  • B. Test cases are independent of each other.
  • C. Test cases are derived systematically from models of the system .
  • D. Test cases are derived systematically from the delivered code.
Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

3) Aufbau der Materie
Mary Wonderland
Neuzeit - Erfindungen, Entdeckungen & Eroberungen
Markus Grass
Der Erste Weltkrieg
Laura Overhoff
Mediation
Antonia C
Euro-FH // Zusammenfassung SOPS2
Robert Paul
Korre - mögliche Fragen
Anna c.
PAED
M T
Forschungs- und Anwendungsfelder der Soziologie Teil 2
stelly Welly
Basiswissen_MS-4.2_Foliensatz I_Stand_04.11.19
Deborah Büscher
Vetie Para Morphologie
Kristin E
Vetie Reprospaß2
Tropsi B