Exit demo CTAL-ATT Certified Tester Advanced Level - Agile Technical Tester (CTAL-ATT) PDF format · free preview

ISQI CTAL-ATT - Questions & Answers

Free preview · every answer includes a full explanation

Product page: https://prepkeys.com/ctal-att.html

Question 1
Single choice

You are working in a project that developed a product that has reached a stable state and is deployed on different HW configurations all over Europe.

You management decided to use your project as Proof of Concept for adopting CI as a new way of working. The POC was implemented on one set of hardware and was successful.

Which of the following actions is a good next step?

A.

Enable different test configurations in the CI process to test different configurations that are deployed in the market

B.

Speed up test execution by decreasing the amount of User Interface (UI) testing to get faster feedback from the CI tests

C.

Reduce the number of tests in the CI test suite, to improve the benefit of the CI approach

D.

Implement code to dynamically select CI tests, executing only test cases affected by changes

Question 2
Single choice

You have received this BDD test

Given that a customer enters the correct PIN When they request to make a withdrawal And they have enough money in their account Then they will receive the money And a receipt

Which of the following is the user story that best fits this BDD test?

A.

As a customer
I want to deposit money into my account
So that I can collect interest

B.

As an ATM
I want to provide services to my customer
So they will be happy

C.

As a customer
I want to withdraw money from my account
So that I can buy a present

D.

As a bank teller
I want customers to use the ATM
So that I don't have to deal with them

Question 3
Single choice

As a tester on an Agile team you have been given the following user story to analyze

As a medical professional

I want to see the availability of operating rooms

So I can schedule surgeries as needed

You have talked with the product owner and she expressed some concern over the term "medical professional"

You have looked into this and found that doctors want to schedule their surgeries but the hospital administrator does not want them to have this ability At this point what should you do to try to resolve this issue?

A.

Wait for the team to sort out the requirements and test something else in the meantime

B.

Continue with testing from the perspective of a doctor and trust the procedures to be worked out later regarding who can do what

C.

Work with the BA and the product owner to try to negotiate the differing approaches and come to an agreement

D.

Expand the testing to cover all personas to ensure that everyone can use the application and let the process sort out later when access is allowed to the application

Question 4
Single choice

A developer has implemented a class that calculates if a given date is a leap year. The definition

for the leap year is given:

Every year that is exactly divisible by four is a leap year, except for years that are exactly

divisible by 100, but these centurial years are leap years if they are exactly divisible by 400.

- divisible by 4

- but not by 100

- years divisible by 400 are leap anyway

You have already thought about it and started with the first test class; the test class looks like

(pseudo JavaScript used here):

// LeapYear.spec.js

describe('Leap year calculator', () => {

it('should consider 1996 as leap', () => {

expect(LeapYear.isLeap(1996)).toBe(true);

});

});

What would now be your next step to proceed as efficient as possible, to validate the correctness of the class above?

A.

First write additional test classes to test also other relevant aspects of the leap year calculation

B.

First write code that covers other relevant aspects of the leap year calculation

C.

First write code that makes this test case fail

D.

First write code that makes this test case pass

Question 5
Single choice

Refactoring of test cases is needed in agile projects for many reasons.

Which of the following statements about the refactoring of test cases is correct?

A.

Refactoring of test cases is done to match and evolve the test cases due to changing functionality. The main benefits include improving the regression test cases and the continued alignment of the tests with the code base and product functionality

B.

Refactoring of test cases is needed because we cannot write and maintain detailed test cases in the short iterations associated with agile. The main benefits include aligning the pace of testing with development and the ability to quickly create new test cases

C.

In general, in the agile world refactoring is a way to clean up test cases by making them shorter. The

main benefits include the ability to write test cases quickly, being able to test faster using short test cases, and being able to automate them quickly

D.

Refactoring of test cases is done as a process with the following steps: Identification, Refactor, Re-run, and Identify again. The main benefits include improving the regression test cases and maintaining the alignment of tests with the code base and product functionality

Question 6
Single choice

Which of the following is an example of how continuous testing facilitates continuous delivery?

A.

Automated testing conducted in the delivery environment helps validate that the delivery has been successful

B.

Continuous testing is the process that delivers the code to the test environment

C.

Automated testing removes the need to report defects so the code can move more quickly toward production

D.

Continuous testing supports continuous delivery to production by constantly regression testing the software in the production environment so problems are identified quickly

Question 7
Single choice

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

Question 8
Single choice

You have been working as a tester in an Agile team You have found that the user stories are being defined by the team but it is still unclear what will be a successful outcome Even after story elaboration you are still unclear as to what a story should do As a result, you're not really sure what to test or to know when you'll be done with testing This problem is becoming worse as completed stories are showcased but the product owner is unhappy with the results

You've looked into the matter further and the comments from the product owner indicate that features are missing from the stories.

The story is functioning correctly within the limited definition of the story but the product owner is expecting more functionality, such as error handling that isn't being defined in the story What technique should you implement that would help to further define the product owner's expectations and alleviate the issues that are arising during the show cases?

A.

TDD by the developers before they begin coding

B.

BDD by the developers when unit tests are being created

C.

ATDD by the team to better define the requirements

D.

A combination of TDD and BDD by the team to improve the pre-build testing

Question 9
Single choice

You are testing a new feature in the current iteration. The feature is supposed to take the input of a name and return the number of characters in the name. This information is used by another feature that will determine the size needed on a form. The acceptance criteria state the following

1. a name of up to 30 characters should be accepted

2. standard error processing should be in place to limit user errors

The developers are using TDD and you have asked to see their tests. This is what they gave you

When you run your manual tests you are finding that when you use the following inputs you get the associated results:

From these results what can you conclude about the TDD process?

A.

The developers are not running the tests prior to releasing the code

B.

The tests cannot be passing

C.

The tests are insufficient and need to include more options

D.

The story needs to be enhanced to include the capabilities that are causing errors

Question 10
Single choice

You have been working to define acceptance tests for a story. You think this will help tailor your testing.
You have asked the product owner to be involved as well. You are currently looking at this story:

As a pet owner

I want to purchase food online

So that it can be delivered to my house when I need it

Which of the following is the preferred way to solicit information from the product owner to better understand what will be "acceptable?

A.

Propose the following acceptance criteria Purchase below the limit for free delivery Purchase above the limit for free delivery Request store pickup

B.

Explain boundary value analysis to the product owner and have them indicate the appropriate boundaries to test

C.

Work with the product owner to elicit examples of how they would use the software Combine their examples with testing techniques to flesh out the set of acceptance criteria

D.

Create the following acceptance criteria and review them with the product owner Login Verify password reset Verify account details Update account details Browse and select food
Add to cart
Remove from cart
Add more items to cart Select delivery Remove items from can until delivery is no longer free Checkout and verify the deliver charge is added Browse again and select food Select delivery and verify it is free Checkout and verify no delivery charge is added

Showing 10 of 98 questions · Unlock the full set