40 Questions Quiz 1 (1-40)

Descripción

Test sobre 40 Questions Quiz 1 (1-40), creado por Daniel Neag el 03/12/2017.
Daniel Neag
Test por Daniel Neag, actualizado hace más de 1 año
Daniel Neag
Creado por Daniel Neag hace más de 6 años
126
0

Resumen del Recurso

Pregunta 1

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

Pregunta 2

Pregunta
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.
Respuesta
  • A. ii, iv and v.
  • B. ii, iii and iv,
  • C. i, ii and iv.
  • D. i, iii and v.

Pregunta 3

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

Pregunta 4

Pregunta
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
Respuesta
  • A. a, e and f
  • B. a, c and d
  • C. a, b and f
  • D. a, d and e

Pregunta 5

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

Pregunta 6

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

Pregunta 7

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

Pregunta 8

Pregunta
Which of the following would you NOT usually find on a software incident report?
Respuesta
  • 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.

Pregunta 9

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

Pregunta 10

Pregunta
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.
Respuesta
  • 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.

Pregunta 11

Pregunta
Which of the following is correct?
Respuesta
  • 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.

Pregunta 12

Pregunta
In software testing what is the main purpose of exit criteria?
Respuesta
  • 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

Pregunta 13

Pregunta
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?
Respuesta
  • 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.

Pregunta 14

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

Pregunta 15

Pregunta
What is beta testing?
Respuesta
  • 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.

Pregunta 16

Pregunta
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
Respuesta
  • A. 3
  • B. 4
  • C. 2
  • D. 1

Pregunta 17

Pregunta
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?
Respuesta
  • 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.

Pregunta 18

Pregunta
Which defects are OFTEN much cheaper to remove?
Respuesta
  • 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

Pregunta 19

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

Pregunta 20

Pregunta
Which of the following is TRUE?
Respuesta
  • 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.

Pregunta 21

Pregunta
Given the following decision table: Which of the following test cases and expected results is VALID?
Respuesta
  • 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.

Pregunta 22

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

Pregunta 23

Pregunta
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
Respuesta
  • A. ii, iv.
  • B. ii, iii.
  • C. i, iii, iv.
  • D. iii.

Pregunta 24

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

Pregunta 25

Pregunta
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.
Respuesta
  • A. i, ii, iii.
  • B. ii, iii, iv.
  • C. i, iii, iv.
  • D. i, ii, iv.

Pregunta 26

Pregunta
What is the MAIN benefit of designing tests early in the life cycle?
Respuesta
  • 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.

Pregunta 27

Pregunta
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.
Respuesta
  • A. ii and iv
  • B. ii and iii
  • C. i and iv
  • D. i and iii

Pregunta 28

Pregunta
Which of the following can be considered as success factors when deploying a new tool in an organization?
Respuesta
  • 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

Pregunta 29

Pregunta
What is the purpose of exit criteria?
Respuesta
  • 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.

Pregunta 30

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

Pregunta 31

Pregunta
With which of the following categories is a test comparator tool USUALLY associated?
Respuesta
  • 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.

Pregunta 32

Pregunta
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.
Respuesta
  • A. 1Y, 2Z, 3X, 4W.
  • B. 1X ,2W, 3Z, 4Y.
  • C. 1Z, 2X, 3W, 4Y.
  • D. 1Z, 2Y, 3X, 4W.

Pregunta 33

Pregunta
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.
Respuesta
  • 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.

Pregunta 34

Pregunta
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?
Respuesta
  • A. Black Box Techniques.
  • B. White Box Techniques.
  • C. Glass Box Techniques.
  • D. Experience Based Techniques.

Pregunta 35

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

Pregunta 36

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

Pregunta 37

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

Pregunta 38

Pregunta
Which of the following is a benefit of test independence?
Respuesta
  • 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.

Pregunta 39

Pregunta
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?
Respuesta
  • A. A
  • B. ABD
  • C. ABCD
  • D. ACD

Pregunta 40

Pregunta
Which of the following is MOST characteristic of specification based (black-box) techniques?
Respuesta
  • 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.
Mostrar resumen completo Ocultar resumen completo

Similar

Nombres de Alimentos en Inglés
maya velasquez
Presentaciones en Inglés
Diego Santos
La Ética según Aristóteles
Diego Santos
Econometría
dorianstorm
Periféricos de Entrada
karol Olague
Aspectos evaluados en el Exani II
Diego Santos
Sistemas del Cuerpo Humano
Diego Santos
La hidrosfera
Raúl Quijano
PSICOBIOLOGIA
hileyn rincon
FORMAS DE HACER NEGOCIOS INTERNACIONALES
yandsbernardo
EXPRESION ORAL Y ESCRITA APLICADAS AL ÁMBITO PROFESIONAL
Laura -