iSQI CTAL-ATT Practice Exams
Last updated on Apr 01,2025- Exam Code: CTAL-ATT
- Exam Name: Certified Tester Advanced Level Agile Technical Tester
- Certification Provider: iSQI
- Latest update: Apr 01,2025
Which of the following best describes when the test automation suite should be updated in order to keep up with the development of new/changed software?
- A . At the end of each iteration, after the completion of manual testing
- B . At the end of each release, during regression testing
- C . At the start of each iteration, during planning
- D . During each iteration as the code is received
You are developing a test automation suite for an agile project and want to include as much coverage as possible. Unfortunately, one of the critical web services (e-commerce checkout) is not scheduled for completion until the later iterations.
Which of the following would be a good option to allow you to progress with your end-to-end test automation without creating too much extra work?
- A . Write the missing web service yourself and then hand over that code to the developers for further refinement
- B . Have the automation create a stub to replace the service for each execution and destroy the stub after execution is complete
- C . Use a service virtualization tool to create a virtualized service to be used by the test automation
- D . Use a service from a legacy product and integrate it with the system to allow use by the test automation
Which option describes a good practice when applying test automation for a Regression-averse test approach? SELECT ONE OPTION
- A . Developing and maintaining automated test checklists to efficiently execute a stable set of tests
- B . Applying BDD to produce automated tests before the implementation of a user story
- C . Focusing on the continuous improvement and refactoring of the automated tests
- D . Increasing automated test coverage to allow more time for exploratory testing
You have to review the following user story that will be developed and tested during the next Sprint:
As a potential conference attendee, I want to be able to register for the conference online, so that registration is simple and paperless.
The following acceptance criteria are also mentioned:
i) Payment can be made via PayPal, Debit or Credit Cards
ii) An acknowledgement email is sent to the attendee after submitting the form
iii) Protection against spam is working as expected
iv) Information from the form is stored in the registrations database
v) All incorrect user inputs are flagged by the system
Which of the following correctly shows which acceptance criteria are testable?
- A . ii, iv, v are testable
- B . i, iii, v are testable
- C . i, ii, iv are testable
- D . iii, iv, v are testable
You have to review the following user story that will be developed and tested during the next Sprint:
As a potential conference attendee, I want to be able to register for the conference online, so that registration is simple and paperless.
The following acceptance criteria are also mentioned:
i) Payment can be made via PayPal, Debit or Credit Cards
ii) An acknowledgement email is sent to the attendee after submitting the form
iii) Protection against spam is working as expected
iv) Information from the form is stored in the registrations database
v) All incorrect user inputs are flagged by the system
Which of the following correctly shows which acceptance criteria are testable?
- A . ii, iv, v are testable
- B . i, iii, v are testable
- C . i, ii, iv are testable
- D . iii, iv, v are testable
Which statement correctly describes continuous testing’ SELECT ONE OPTION
- A . Each modification made to the system triggers the tests that cover that change to be executed automatically.
- B . Each modification made to the system is automatically tested and then automatically made implemented in live
- C . Each new build of the system triggers deployment into a testing environment.
- D . Each new build of the system triggers a pre-defined set of tests to be executed automatically.
Why could test cases need to be refactored in an Agile project?
SELECT ONE OPTION
- A . To maintain bi-directional traceability with the user stories
- B . To increase the breadth of black box coverage
- C . To make them easier to understand and cheaper to modify
- D . To ensure that the tests and code remained aligned
**You have been given the following story:
As a shopper
I want to scan my membership card
So that I get all the discounts I’m entitled to receive
Which of the following is the correct use of BDD to design test scenarios?**
- A . Given that the shopper scans their card
When they checkout
Then they should receive all the quantity discounts for everything they have purchased - B . As a store clerk
I want to scan a customer’s card
So that their total includes their discounts - C . Given that I have scanned my card
I expect to receive my discounts
And an itemized list of what I bought - D . Given that a card is scanned
Then discounts should be applied
When the customer checks out
Which requirements engineering technique would BEST identify how different groups of users may interact with a system, helping to identify gaps and inconsistencies in a user story-’
SELECT ONE OPTION
- A . Personas
- B . Storyboards
- C . Use Cases
- D . Story Mapping
What is the characteristic of a unit test that makes it “deterministic”?
- A . If it is run with the same conditions, it will get the same result each time
- B . It tests the details of the code, including verifying all the possible areas of data handling
- C . It tests only the targeted piece of functionality
- D . It runs very fast, allowing many tests to be run quickly