2)
A-
Which of the following tool types can be used during the dynamic
tests execution phase?
Answer:
Test data preparation tool
Coverage measurement tool
Configuration management tool
Modeling tool
None of them
B-
You are testing a Customer Relationship Management (CRM) system
and you have prepared the following test cases: TC1: Precondition:
CRM database contains at least two client records. Steps: Clear the
whole CRM client database by removing all records. Expected result:
The database is empty. TC2: Precondition: No preconditions. Steps:
Create a new client record that does not exist in the database.
Expected result: Record correctly added in the database. TC3:
Precondition: Database contains at least one client record. Steps:
Try to create a new client record that is already present in the
database. Expected result: System does not allow to duplicate the
record. At the beginning, the CRM database is empty. The execution
of each test lasts 5 minutes. You want to execute all three test
cases, but in the shortest possible time. What is the reasonable
test execution schedule in this situation?
Answer:
TC2, TC3, TC1
TC2, TC2, TC3, TC1
TC2, TC2, TC1, TC2, TC3
TC2, TC1, TC3
None of them
C-
Every fifth shopping an order processing system assigns a
discount for a customer. You want to use the equivalence
partitioning technique to check if this rule holds. Which of the
following is a minimal set of values representing the number of the
shopping that covers all valid equivalence classes for this
problem?
Answer:
0, 1, 5
55, 89
1, 5, 6
5, 10, 15, 20, 25, 30, 35, ...
None of them
D-
What is the difference between static and dynamic techniques,
with respect to their objectives?
Answer:
Static techniques directly detect defects, while dynamic
techniques directly detect failures.
Static techniques are usually applied at the early SDLC phases,
while dynamic techniques at the later phases.
There is no difference, because they both try to detect defects
as early as possible.
Static techniques require programming skills, while dynamic
techniques don't.
None of them