40 Question quiz 20 (761-800)

Descrição

Quiz sobre 40 Question quiz 20 (761-800), criado por Daniel Neag em 09-12-2017.
Daniel Neag
Quiz por Daniel Neag, atualizado more than 1 year ago
Daniel Neag
Criado por Daniel Neag mais de 6 anos atrás
57
0

Resumo de Recurso

Questão 1

Questão
Which of the following is true of acceptance testing?
Responda
  • 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.

Questão 2

Questão
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.
Responda
  • A. II, III, and IV
  • B. I, III, and IV
  • C. I and IV
  • D. II and III

Questão 3

Questão
When conducting reviews, psychological sensitivity is required. Which mistake often occurs when conducting reviews and may lead to interpersonal problems within teams?
Responda
  • 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.

Questão 4

Questão
Which of the following statements about functional testing is TRUE?
Responda
  • 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.

Questão 5

Questão
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.
Responda
  • A. II, III and IV
  • B. III and IV
  • C. I and IV
  • D. I, II and III

Questão 6

Questão
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
Responda
  • 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

Questão 7

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

Questão 8

Questão
What is the purpose of regression testing?
Responda
  • 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.

Questão 9

Questão
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
Responda
  • A. 5
  • B. 3
  • C. 1
  • D. 2

Questão 10

Questão
Which of the following statements about static analysis is FALSE?
Responda
  • 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.

Questão 11

Questão
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?
Responda
  • 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".

Questão 12

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

Questão 13

Questão
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?
Responda
  • A. Decision testing.
  • B. Statement testing
  • C. State transition testing
  • D. Equivalence partitioning

Questão 14

Questão
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?
Responda
  • A. Tester 3
  • B. Tester 1
  • C. Tester 2
  • D. Tester 4

Questão 15

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

Questão 16

Questão
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
Responda
  • A. S1, S2, U1 and U2
  • B. T1, T2, U1 and U2
  • C. S1, S2, V1 and V2
  • D. T1, T2, V1 and V2

Questão 17

Questão
Given the following flow chart diagram: What is the minimum number of test cases required for 100% statement coverage and 100%decision coverage, respectively?
Responda
  • 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

Questão 18

Questão
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.
Responda
  • A. c, a, b, d.
  • B. d, b, a, c
  • C. c, a, d, b.
  • D. a, c, d, b.

Questão 19

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

Questão 20

Questão
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
Responda
  • A. a and c.
  • B. b and d.
  • C. b and e.
  • D. c and e.

Questão 21

Questão
Which statement BEST describes the role of testing?
Responda
  • 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.

Questão 22

Questão
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)?
Responda
  • 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

Questão 23

Questão
Which one of the following is a characteristic of good testing in any lifecycle model?
Responda
  • 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.

Questão 24

Questão
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
Responda
  • 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.

Questão 25

Questão
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
Responda
  • 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%.

Questão 26

Questão
Which of the following statements is true?
Responda
  • 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.

Questão 27

Questão
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.
Responda
  • A. a and b.
  • B. b and d
  • C. c and d
  • D. b and c.

Questão 28

Questão
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
Responda
  • A. a, b and c
  • B. b, c and d
  • C. a, b and d.
  • D. a, c and d

Questão 29

Questão
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?
Responda
  • A. Feeds
  • B. F33ds
  • C. FEEDS
  • D. fEEDs

Questão 30

Questão
Which of the following is LEAST likely to be included in an incident report?
Responda
  • 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

Questão 31

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

Questão 32

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

Questão 33

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

Questão 34

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

Questão 35

Questão
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.
Responda
  • A. a, c and e.
  • B. a, b and d.
  • C. b, d and e.
  • D. a, c and d.

Questão 36

Questão
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
Responda
  • 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.

Questão 37

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

Questão 38

Questão
Which one of the following is true of software development models?
Responda
  • 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.

Questão 39

Questão
Which of the following BEST describes a data-driven approach to the use of test execution tools?
Responda
  • 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

Questão 40

Questão
Which of the following is an example of a product risk?
Responda
  • 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

Semelhante

Teoria Geral da Administração(TGA)
Flávio Machado Lobo
Matemática - Triângulos
Felipe Perreira
Phrasal Verbs - Inglês #1
Eduardo .
Técnico em Segurança do Trabalho
Cleber Scarduell
Arte do Renascimento Séc.XV - XVI
paulaqueiroz
Fatoração de Polinômios
Sara Helena
Teoria do Crime
Carolina Fernanda Silva
Prep Like a Pro with GoConqr's GCSE Revision Timetable
Landon Valencia
FlashCards - Japonês - Hiragana
Haruhi NP
Simulado ENEM - Ciências da Natureza
Nathalia - GoConqr
ACA - PARTE 1
Carlos Henrique Lima