Spring Sale Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

Certified Tester Advanced Level Agile Technical Tester

Last Update 13 hours ago Total Questions : 98

The Certified Tester Advanced Level Agile Technical Tester content is now fully updated, with all current exam questions added 13 hours ago. Deciding to include CTAL-ATT practice exam questions in your study plan goes far beyond basic test preparation.

You'll find that our CTAL-ATT exam questions frequently feature detailed scenarios and practical problem-solving exercises that directly mirror industry challenges. Engaging with these CTAL-ATT sample sets allows you to effectively manage your time and pace yourself, giving you the ability to finish any Certified Tester Advanced Level Agile Technical Tester practice test comfortably within the allotted time.

Question # 11

A new Payroll system calculates the amount of tax that each employee must pay (TaxToPay) on their gross monthly salary (in (), and the net salary (NetSal) that they will receive after that amount of tax has been deducted It also calculates the amounts of tax (TaxPdYTD) and net salary (SalPdYTD) paid in the year to date (YTD) by adding them to the stored amounts from last month (for month 1 these will be zero), inputs Include Employee id (Empid) and Gross Salary this month (GrossSal). Tax Rate is looked up on the key of Employee Id, the amounts of tax and net salary paid in the year to date are looked up on the key of (Employee Id and [month • 1]) except that for month 1 they will be zero.

if both employees were paid the same in month 1 as in the current month 2. for which tax has now to be calculated, which data-driven input and expected output table is correct for this situation?

Table 1

Month Empid GrossSal TaxRate TaxToPay NetSal TaxPdYTD

2 1 2000 15 300 1700 600

2 2 2200 20 440 1760 880

Table 2

Month Empid GrossSal TaxRate TaxToPay NetSal SalPdYTD

2 1 2000 0.15 300 1700 600

2 2 2200 0.2 440 1760 880

Table 3

Month Empid GrossSal TaxToPay NetSal TaxPdYTD SalPdYTD

1 1 2000 300 1700 600 3400

1 2 2200 440 1760 880 3520

Table 4

Month Empid GrossSal TaxToPay NetSal TaxPdYTD SalPdYTD

2 1 2000 300 1700 600 3400

2 2 2200 440 1760 880 3520

SELECT ONE OPTION

A.

Table 3

B.

Table 1

C.

Table 4

D.

Table 2

Question # 12

A unit test should be isolated Which option correctly describes the meaning of ' isolated ' as a characteristic of a unit test?

SELECT ONE OPTION

Whenever it is run under the same conditions, it should produce the same results.

A.

It should only test the functionality related to it.

B.

it should provide immediate feedback.

C.

It should test only the code for which it was originally written

Question # 13

The following user story has been written:

As a paying hotel guest

I want to see the charges that have been added to my bill

So that I can monitor my expenditure and know In advance how much I will have to pay when I check out

The notes that have been added to It mention that It must be possible for the guest to get a printout of the bill, see It In a variety of currencies and set a flag in the hotel ' s billing system against any Item that they wish to challenge.

The following acceptance criteria have been defined:

1. The user shall be able to choose from the most commonly-used currencies.

2. The application must be accessible on most mobile platforms as well as on the hotel room ' s smart TV.

3. The hotel manager must be notified whenever a bill item is flagged by a hotel guest.

4. End-to-end response time for any individual request submitted by a user must not exceed 7 seconds.

Applying the INVEST technique to this user story, including its acceptance criteria, which of the following statements is correct?

SELECT ONE OPTION

A.

The Testable and Negotiable criteria of INVEST have not been satisfied

B.

The Testable and Small criteria of INVEST have not been satisfied

C.

The INVEST criteria have all been satisfied by this epic

D.

The Negotiable and Small criteria of INVEST have not been satisfied

Question # 14

You have been asked to supply the data file for a data-driven test automation script that will be used to test the following story:

As a customer, I want to be told how many items I need to purchase, so I can receive free shipping.

You have been told the automation will verify whether or not the free shipping message is displayed. Which of the following columns should appear in your data file to support the automated testing of this story?

A.

customer name; # items; price of items; total shipping cost

B.

item ID; quantity purchased; free shipping (y/n)

C.

quantity purchased; free shipping (y/n); total shipping cost

D.

item ID; quantity purchased; free shipping (y/n); item shipping cost; total shipping cost

Question # 15

What is the characteristic of a unit test that makes it “atomic”?

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

Question # 16

Using your knowledge of requirements engineering, which of the following activities would assist the team the most in determining which stories they should commit to in the first sprint?

A.

Create personas for a Business Traveler, a Vacationer, and a Senior Citizen

B.

Develop a user story map for this segment of the application

C.

Consult with a Usability Expert on the set of colors and fonts to use for this screen

D.

Create a state transition diagram and other UML artifacts

Question # 17

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 # 18

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

Question # 19

Which of the following is an expected problem that often occurs with automation test suites?

A.

The defects become prohibitive when trying to execute the suite

B.

The test execution time becomes longer, making it difficult to get all the tests run as often as desired

C.

The test suite continues to grow, making source control difficult to manage

D.

The time it takes to create new tests increases exponentially as new features are added to the code

Question # 20

You are testing a large e-commerce system for household goods that is being implemented using Agile methodologies. You are currently working on deriving tests for stories that are implementing the following epic:

As a customer, I want to use the e-commerce system, so that I can have my purchased goods delivered to my house.

The story you are currently working on is:

As a customer, I want to be told how many items I need to purchase, so I can receive free shipping.

Which of the following is an appropriate test charter for this story?

A.

Login as a customer, buy various goods, request free delivery, add more items to your cart, checkout, verify that your delivery is free

B.

Buy 12 of one item and see if you are advised that you get free shipping

C.

Login as a customer, buy an item, verify message tells you how many are needed for free delivery, add items to your cart until you qualify, checkout, verify delivery is free

D.

As a supplier, verify that when a customer purchases the correct number of goods, the system doesn’t add any delivery fees at checkout

Go to page: