40 Question quiz 20 (761-800)

Description

Quiz on 40 Question quiz 20 (761-800), created by Daniel Neag on 09/12/2017.
Daniel Neag
Quiz by Daniel Neag, updated more than 1 year ago
Daniel Neag
Created by Daniel Neag over 6 years ago
56
0

Resource summary

Question 1

Question
Which of the following is true of acceptance testing?
Answer
  • A. A goal of acceptance testing is to stress-test the system.
  • B. A goal of acceptance testing is to establish confidence in the system.
  • C. Acceptance testing is performed by technical staff.
  • D. Acceptance testing is only used to address functionality issues within the system.

Question 2

Question
An estimate of resources should be made so that an organization can create a schedule for testing. Which of the following approaches can be used for creating an estimate? I. A skills-based approach, in which the estimate is based on all the testers skills. II. An expert-based approach, in which the owner or other expert creates the estimate. III. A metrics-based approach, in which the estimate is based on previous testing efforts. IV. A bottom-up approach, in which each tester estimates their work and all estimates are integrated.
Answer
  • A. II, III, and IV
  • B. I, III, and IV
  • C. I and IV
  • D. II and III

Question 3

Question
When conducting reviews, psychological sensitivity is required. Which mistake often occurs when conducting reviews and may lead to interpersonal problems within teams?
Answer
  • A. Testers and reviewers expect that defects in the software product are already found and fixed by the developers.
  • B. Due to time constraints, testers and reviewers do not believe they can afford enough time to find failures.
  • C. Testers and reviewers communicate defects as criticism against humans instead of against the software product.
  • D. Testers and reviewers are not sufficiently trained to accurately identify failures and faults in the item under review.

Question 4

Question
Which of the following statements about functional testing is TRUE?
Answer
  • A. Functional testing is primarily concerned with 'what' a system does rather than 'how' it does it.
  • B. Control flow models and menu structure models are used primarily in functional testing.
  • C. Functional testing includes, but is not limited to, load testing, stress testing and reliability testing.
  • D. Functional testing is often referred to as 'structural' testing by testers and developers.

Question 5

Question
Which of the following statements about test design are TRUE? I. During test design, the test cases and test data are created and specified. II. If expected results are not defined, a plausible but erroneous result may be accepted as correct. III. The IEEE 829 standard describes the content of test design and test case specifications. IV. Test design is a formal process in which the conditions to be tested are determined.
Answer
  • A. II, III and IV
  • B. III and IV
  • C. I and IV
  • D. I, II and III

Question 6

Question
What factors should an organization take into account when determining how much testing is needed? I. Level of risk II. Tools to be used during test sub-project III. Project constraints such as time and budget IV. Skill of the testers V. Expected selling cost of the system
Answer
  • A. All of the factors should be taken into account.
  • B. I and III
  • C. I, III and IV
  • D. I, II, IV, and V

Question 7

Question
What is testing without executing the code?
Answer
  • A. Non-functional testing.
  • B. Structure-based testing (white box).
  • C. Static testing.
  • D. Functional testing (black box).

Question 8

Question
What is the purpose of regression testing?
Answer
  • A. It enables us to reuse all our tests to improve ROI.
  • B. It can be used to replace acceptance testing.
  • C. To reduce the amount of impact analysis we must do when modifying a system.
  • D. To discover any defects introduced or uncovered as a result of a change.

Question 9

Question
For the following piece of code, how many test cases are needed to get 100% statement coverage? Procedure X Read (Color) // Input color from user IF (Color == �Red�) THEN Call Roses(Color) ELSEIF (Color == �Blue�) THEN Call Violets(Color) ELSE PRINT �User is no Shakespeare� SaveToDatabase(Color) End Procedure X
Answer
  • A. 5
  • B. 3
  • C. 1
  • D. 2

Question 10

Question
Which of the following statements about static analysis is FALSE?
Answer
  • A. Static analysis can find defects that are likely to be missed by dynamic testing.
  • B. Static analysis is a good way to force failures in the software.
  • C. Static analysis tools examine code or other types of product documentation.
  • D. Static analysis can result in cost saving by finding bugs early.

Question 11

Question
Given the following sample of pseudo code: 01 Input number of male rabbits 02 Input number of female rabbits 03 If male rabbits > 0 and female rabbits > 0 then 04 Input Do you want to breed (Yes / No) 05 If breed = "No" 06 Print "Keep male and female rabbits apart!" 07 End if 08 End If. Which of the following test cases will ensure that statement "06" is executed?
Answer
  • A. male rabbits = 1, female rabbits = 1, breed = "yes".
  • B. male rabbits = 1, female rabbits = 1, breed = "no".
  • C. male rabbits = 1, female rabbits = 2, breed = "yes".
  • D. male rabbits = 1, female rabbits = 0, breed = "no".

Question 12

Question
Which ADDITIONAL test level could be introduced into a standard V-model after system testing?
Answer
  • A. System Integration Testing
  • B. Acceptance Testing
  • C. Regression Testing
  • D. Component Integration Testing

Question 13

Question
A system under development contains complex calculations and decision logic, and it is assessed as high risk because of the relative inexperience of the development team in the application domain. Which of the following would be the MOST appropriate choice of test design technique for component testing?
Answer
  • A. Decision testing.
  • B. Statement testing
  • C. State transition testing
  • D. Equivalence partitioning

Question 14

Question
Four testers have each submitted an incident report in which each reported a problem with the User log-on process. User log-on is a critical component of the system. The table below describes the four defect reports submitted. Which Tester has reported the incident MOST effectively, considering the information and priority they have supplied?
Answer
  • A. Tester 3
  • B. Tester 1
  • C. Tester 2
  • D. Tester 4

Question 15

Question
Which of the following software work product can be used as a basis for testing?
Answer
  • A. Incremental scenarios
  • B. Design documents
  • C. Undocumented features
  • D. V-model specifications

Question 16

Question
Match the test design techniques to the correct descriptions. S. Black-box technique T. White-box technique U. Structural-based technique V. Specification-based technique 1. Selecting test cases based on documentation 2. Ignoring the internal structure of the system
Answer
  • A. S1, S2, U1 and U2
  • B. T1, T2, U1 and U2
  • C. S1, S2, V1 and V2
  • D. T1, T2, V1 and V2

Question 17

Question
Given the following flow chart diagram: What is the minimum number of test cases required for 100% statement coverage and 100%decision coverage, respectively?
Answer
  • A. Statement Coverage = 1, Decision Coverage = 3.
  • B. Statement Coverage = 2, Decision Coverage = 3.
  • C. Statement Coverage = 2, Decision Coverage = 2.
  • D. Statement Coverage = 3, Decision Coverage = 3

Question 18

Question
Which ordering of the list below gives increasing levels of test independence? a. Tests designed by a fellow-member of the design team. b. Tests designed by a different group within the organization. c. Tests designed by the code author. d. Tests designed by different organization.
Answer
  • A. c, a, b, d.
  • B. d, b, a, c
  • C. c, a, d, b.
  • D. a, c, d, b.

Question 19

Question
During which activity of the Fundamental Test Process test process do you review the test basis?
Answer
  • A. Evaluating exit criteria and reporting.
  • B. Test implementation and execution
  • C. Test analysis and design
  • D. Test planning and control

Question 20

Question
Which of the following are structure-based techniques? a. Decision table testing b. Boundary value analysis c. Multiple condition coverage d. Use case testing e. Decision testing
Answer
  • A. a and c.
  • B. b and d.
  • C. b and e.
  • D. c and e.

Question 21

Question
Which statement BEST describes the role of testing?
Answer
  • A. Testing ensures that the right version of code is delivered
  • B. Testing can be used to assess quality.
  • C. Testing shows that the software is error free.
  • D. Testing improves quality in itself.

Question 22

Question
The following table shows 6 test procedures (P to U) that must now be entered into a test execution schedule. Business severity is regarded as the most important element in determining the sequence of the test procedures, but other dependencies must also be taken into consideration. Regression testing can only be run once all other tests have completed. Which of the following represents the MOST effective sequence for the test execution schedule (where the first entry in the sequence is the first procedure to be run, the second entry is the second to be run and so on)?
Answer
  • A. Q, P, S, R, U, T.
  • B. R, S, U, P, Q, T.
  • C. R, P, S, U, T, Q.
  • D. P, Q, R, S, U, T

Question 23

Question
Which one of the following is a characteristic of good testing in any lifecycle model?
Answer
  • A. Each test level has the same test objective.
  • B. There should be more testing activities than development activities.
  • C. Test design can only begin when development is complete.
  • D. Testers should begin to review documents as soon as drafts are available.

Question 24

Question
Which tasks would USUALLY be performed by a test leader and which by the tester? a. Adapt planning based on test results. b. Create test specifications. c. Plan tests. d. Write or review a test strategy
Answer
  • A. c and d by the test leader; a and b by the tester
  • B. a and b by the test leader; c and d by the tester.
  • C. a and d by the test leader; b and c by the tester
  • D. a, c and d by the test leader; b by the tester.

Question 25

Question
The flow graph below shows the logic of a program for which 100% statement coverage and 100% decision coverage is required on exit from component testing. The following test cases have been run: Test Case 1 covering path A, B, D, G Test Case 2 covering path A, B, D, E, F, E, F, E, F, E, G Test Case 3 covering path A, C, D, E, F, E, G Which of the following statements related to coverage is correct? PICTURE MISSING. CORRECT ANSWER :A
Answer
  • A. Statement coverage is 100%; decision coverage is 100%.
  • B. Statement coverage is less than 100%; decision coverage is 100%.
  • C. Statement coverage is 100%; decision coverage is less than 100%.
  • D. Statement coverage and decision coverage are both less than 100%.

Question 26

Question
Which of the following statements is true?
Answer
  • A. Testing cannot prove that software is incorrect.
  • B. Testing can prove that software is either correct or incorrect.
  • C. Testing cannot prove that software is correct.
  • D. Testing can prove that software is correct.

Question 27

Question
Which of the following statements describe why experience-based test design techniques are useful? a. They can help derive test cases based on analysis of specification documents. b. They can identify tests not easily captured by formal techniques. c. They make good use of tester's knowledge, intuition and experience. d. They are an effective alternative to formal test design techniques.
Answer
  • A. a and b.
  • B. b and d
  • C. c and d
  • D. b and c.

Question 28

Question
Under what circumstances would you plan to perform maintenance testing? a. As part of a migration of an application from one platform to another. b. As part of a planned enhancement release. c. When the test scripts need to be updated. d. For data migration associated with the retirement of a system
Answer
  • A. a, b and c
  • B. b, c and d
  • C. a, b and d.
  • D. a, c and d

Question 29

Question
A system specification states that a particular field should accept alphabetical characters in either upper or lower case. Which of the following test cases is from an INVALID equivalence partition?
Answer
  • A. Feeds
  • B. F33ds
  • C. FEEDS
  • D. fEEDs

Question 30

Question
Which of the following is LEAST likely to be included in an incident report?
Answer
  • A. Suggestions for correcting the problem
  • B. Degree of impact on stakeholder interests.
  • C. Date the incident was discovered.
  • D. Life cycle process in which the incident was discovered

Question 31

Question
Which of the following is a standard for test documentation?
Answer
  • A. IEEE Std. 1028
  • B. EEE Std. 1044
  • C. ISO 9126.
  • D. IEEE Std. 829

Question 32

Question
In which activity of the Fundamental Test Process is the test environment set up?
Answer
  • A. Test implementation and execution.
  • B. Test planning and control
  • C. Test analysis and design
  • D. Evaluating exit criteria and reporting

Question 33

Question
Which of the following is a specification-based technique?
Answer
  • A. Use Case Testing
  • B. Error Guessing.
  • C. Condition coverage
  • D. Statement Testing.

Question 34

Question
Given the following state table: Which of the following represents an INVALID transition (N)?
Answer
  • A. 'Off' from 'Display Channel 1'.
  • B. 'Channel 2' from 'Display Channel 1'.
  • C. 'Stby' from 'Live'.
  • D. 'Channel 2' from 'Live'.

Question 35

Question
Which of the following types of defect are typically found in reviews rather than in dynamic testing? a. Deviations from standards. b. Defects in interface implementation. c. Poor maintainability of code. d. Poor performance of the system. e. Defects in requirements.
Answer
  • A. a, c and e.
  • B. a, b and d.
  • C. b, d and e.
  • D. a, c and d.

Question 36

Question
Pair the correct test design techniques (i to v) with the category of techniques (x, y and z): i. Exploratory Testing ii. Equivalence Partitioning iii. Decision Testing iv. Use Case Testing v. Condition coverage x. Specification-based y. Structure-based z. Experienced-based
Answer
  • A. x = i and ii; y = iii and v; z = iv.
  • B. x = i, ii and iv; y = v; z = iii
  • C. x = ii and iv; y = iii and v; z = i.
  • D. x = iii and iv; y = v; z = i and ii.

Question 37

Question
Which of the following is a purpose of the review 'kick off' activity?
Answer
  • A. Explain the objectives
  • B. Select the personnel group
  • C. Document results
  • D. Define entry and exit criteria

Question 38

Question
Which one of the following is true of software development models?
Answer
  • A. There are always four test levels in the V-model.
  • B. In a Rapid Application Development (RAD) project, there are four test levels for each iteration.
  • C. In Agile development models, the number of test levels for an iteration can vary depending on the project.
  • D. There must be at least four test levels for any software development model.

Question 39

Question
Which of the following BEST describes a data-driven approach to the use of test execution tools?
Answer
  • A. Monitoring response times when the system contains a specified amount of data
  • B. Manipulation of databases and files to create test data
  • C. Using a generic script that reads test input data from a file
  • D. Recording test scripts and playing them back

Question 40

Question
Which of the following is an example of a product risk?
Answer
  • A. Software that does not perform its intended functions
  • B. Failure of a third party
  • C. Problems in defining the right requirements
  • D. Skill and staff shortages
Show full summary Hide full summary

Similar

Introduction and Ionic Bonding
ShreyaDas
ICT Key Terms Quiz - Part 1
Mr Mckinlay
To Kill a Mockingbird -Analysis of Major Characters
sungiemarie
Plato's philosophy
Sumahlor
Project Scope Management Process
neeshar
Photosynthesis & Respiration
Shubh Malde
ASIENTOS DE AJUSTE FINAL Y PREPARACION DE ESTADOS FINANCIEROS
Majo Herrera
An Inspector Calls Revision Notes
Noor Sohail
NCEA Guide to Studying
Kerrin _
1PR101 2.test - Část 17.
Nikola Truong
ГОС по БД #1
хомяк убийца