A new testing tool has been selected for an organisation and a pilot project has successfully completed. The next step is to deploy the tool within the organization.
What is a key success factor in tool deployment?
Correct : C
Providing support for the test team using the tool is crucial for successful deployment. This includes training the test team on how to effectively use the tool, offering ongoing support to address any issues, and integrating the tool into existing processes. By ensuring that the team is well-equipped and confident in using the tool, the organization can maximize the benefits of the tool and improve overall testing efficiency.
Start a Discussions
Your task is to compile a test execution schedule for the current release of software.
The system specification states the following logical dependencies:
* An admin user must create/amend/delete a standard user.
* A standard user is necessary to perform all other actions.
The test plan requires that re-tests must be performed first, followed by the highest priority tests. To save time, the test plan states that tests should be scheduled to create test data for the subsequent tests in the schedule.
The following test cases have been designed, with an indication of priority (1 being the highest priority) and whether the test has previously failed.
Which test execution schedule meets the test plan requirements and logical dependencies?
Correct : D
To meet the test plan requirements and logical dependencies, the test schedule should start with re-tests (those that have previously failed), followed by the highest priority tests. Additionally, tests should be scheduled to create necessary test data for subsequent tests. In this case, test e (log in as admin user and create a standard user) must be done first as it is necessary to perform all other actions. Following this, test a (log in as standard user and create customer account) creates the standard user needed for subsequent actions. Then, the highest priority test d (order two items or more), which has failed before, should be executed next, followed by test c (create invoice for order), and finally test b (order one item).
Start a Discussions
Debugging and Testing are key activities in the software development lifecycle.
Which of the following are 'Debugging' activities?
a) Identifying, a failure
b) Locating the cause of failure
c) Fixing the defect
d) Checking the fix has resolved the failure
Correct : C
Debugging is the process that involves locating the cause of a failure and fixing the defect. Therefore, activities b) 'Locating the cause of failure' and c) 'Fixing the defect' are debugging activities. Identifying a failure and checking that the fix has resolved the failure are parts of testing, not debugging.
Start a Discussions
Why is measurement of code coverage Important?
Correct : C
Measurement of code coverage is important because it helps ensure that all code is exercised by tests. This does not guarantee that there are no coding errors or that all requirements are covered, but it helps identify untested parts of the code, allowing for better test coverage and more robust testing processes.
Start a Discussions
The following Test Cases have been created for a simple web-based airline booking system.
Test Case 1: Search for an item Available Flights
Test Case 2: View selected item in My Flights
Test Case 3: Login to the system: Login is accepted
Test Case 4: Select an available flight: item added to My Flights
Test Case 5: Print confirmation receipt, then exit
Test Case 6: In My Flights, confirm details and book flight
Which of the following is the correct logical order for the test cases?
Correct : D
The correct logical order for the test cases ensures a smooth and realistic flow through the system functionalities. The sequence should start with logging into the system (Test Case 3), searching for available flights (Test Case 1), selecting an available flight (Test Case 4), viewing the selected item in My Flights (Test Case 2), confirming details and booking the flight in My Flights (Test Case 6), and finally printing the confirmation receipt and exiting (Test Case 5) .
Top of Form
Bottom of Form
Start a Discussions