New Year Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Free and Premium iSQI CTAL-ATT Dumps Questions Answers

Page: 1 / 7
Total 98 questions

Certified Tester Advanced Level Agile Technical Tester Questions and Answers

Question 1

When test cases are re-run after refactoring, what should always be verified?

Options:

A.

That the branch coverage is the same or increased

B.

That they provide better logging than before

C.

That they provide the same results as before

D.

That tests that have now been made redundant are removed from the test set

Buy Now
Question 2

You are testing a mission-critical system and want to use exploratory testing for part of the testing. According to the syllabus, what is the correlation between this type of testing and the risk level of the item being tested?

Options:

A.

High = recommended, Medium = recommended, Low = highly recommended

B.

High = recommended, Medium = highly recommended, Low = highly recommended

C.

High = highly recommended, Medium = highly recommended, Low = highly recommended

D.

High = not recommended, Medium = recommended, Low = highly recommended

Question 3

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 when my items will be delivered, so I can plan to be home.

You have been given the following charter that was proposed by another tester for testing this story:

Login as a customer, buy enough of each item to qualify for free shipping for each item, checkout, and verify that no shipping fee has been added.

What is the main flaw in this charter?

Options:

A.

It focuses on the delivery company instead of the activities of the user

B.

It does not cover the main functionality of the user story

C.

The expected results are not defined

D.

The actions of the user are not clearly stated in the charter

Question 4

You are working for an organization that has implemented CI and is struggling to get the automated tests to run on each build because of time limitation. On average, there are three ad hoc builds per day, one scheduled build overnight, one scheduled build on Friday nights, and one build that is conducted on the Thursday night before the end of the sprint on the second Friday. There are four sets of tests: high priority, medium priority, low priority, and non-functional. The non-functional tests must be run in the integrated stage environment, whereas the other tests can be run in any of the test environments.

In addition to just the execution time of the tests, it has also been noted that reviewing the results of the tests takes about two hours per set of tests.

Given this information, which of the following is the most efficient and effective approach to test automation execution?

Options:

A.

Run all four test sets, every night

B.

Run all the high-priority tests for every build, low-priority tests at night, and the medium-priority tests at the end of the sprint

C.

Run all four test sets on every build

D.

Run the high-priority tests on each build, the medium-priority tests every night, the low-priority tests every week, and the non-functional tests on the Thursday night before sprint end

Question 5

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

Options:

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 6

What are the characteristics of a unit test that are defined with the acronym FIRST?

Options:

A.

Fast, Iterative, Replaceable, Stable, Tolerant

B.

Fast, Isolated, Repeatable, Self-validating, Thorough

C.

Fast, Implemented, Recorded, Source-controlled, Tactical

D.

Fast, Immediate, Relevant, Standardized, Transparent

Question 7

BDD and ATDD are most commonly used with which test approach?

Options:

A.

Analytical

B.

Model-based

C.

Process-compliant

D.

Reactive

Question 8

In a regression-averse test approach, what should be the focus of test automation?

Options:

A.

To create an ever-growing set of regression tests

B.

To implement automated unit testing to improve the overall quality

C.

To provide automated checklists to help guide the testing

D.

To continuously improve and update a set of tests that have been created

Question 9

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?

Options:

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 10

When using a process-compliant approach to testing a safety-critical project, what is an important aspect of test automation?

Options:

A.

It must provide exhaustive regression testing

B.

It must provide traceability back to the requirements and results documentation

C.

It must implement automated checklists

D.

It must incorporate model-based testing

Question 11

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?

Options:

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 12

An increased proportion of automated test coverage often leads to a greater degree of manual

testing that follows reactive strategies, because:

Options:

A.

Many of the tests that can be prepared upfront, will be automated which enables the testers

to spend more time for execution of manual tests

B.

An increase of the proportion of automated test increases test coverage, and the uncovered

areas are to be tested reactively

C.

If the proportion of automated tests increases, manual tests focus on the riskiest areas

which are identified reactively

D.

Reactive strategies consider the current context and status of the project and the system

under test. To be able to adopt to this status most flexible a greater degree of manual

testing is necessary

Question 13

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?

Options:

A.

Given that the shopper scans their card

When they checkout

Then they should receive alt 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

Question 14

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?

Options:

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 15

The challenges described below are of test automation in agile settings or agile projects. Which is

the correctly described one?

Options:

A.

Resource’s availability is a challenge in automating tests in agile settings, as they are

needed to create, maintain, and execute the test suite

B.

Unit testing automation is the most critical test automation needed in agile and covers most

of the testing challenges in agile quality of code and gives good test coverage

C.

Test deployment time is one of the challenges of agile testing, as deploying slow is not

possible in short iterations

D.

Test Execution Time is not critical in agile as there are fewer tests written, and they are

designed as checklists or high-level tests which reduces the time it takes to execute them

Question 16

Consider the following section of pseudocode

Display "You exceeded the number of tries to enter a password. Your account is now locked. Call customer.

For this section of code, which of the following issues should be identified during a code review?

1. Variables have not been properly defined with meaningful names

2. There are unused variables defined

3. Divisors are not tested for zero

4. Loop counters are not properly initialized

5. There are endless loops

6. There are statements within the loop that should be outside the loop

Options:

A.

1, 3, 4, 5

B.

7, 3, 4, 6

C.

2, 3, 5, 6

D.

1, 2, 4, 6

Question 17

Whose perspective should be used when a user story is created?

Options:

A.

User acceptance tester

B.

End user

C.

Stakeholder paying for the project

D.

Automated user software

Question 18

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 tor 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?

Options:

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

Question 19

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?

Options:

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 20

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

Options:

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 21

The following user story has been written for a new application being developed to pre-book a space at a National Car Park.

As a vehicle driver

i want to be able to pre-book a car parking space online, selecting a disabled driver's space if needed

So that l can pay in advance and receive confirmation of my parking space number.

The following acceptance criteria have also been written:

•Payment can be made via PayPal, Debit or Credit Card

•Confirmation of payment and car parking details should be sent after the booking process is completed

•Driver information is stored in the reservation database

The database has been built and tested in a previous sprint, but the interface to the different payment methods have yet to be developed

As a tester in an agile team, you have been asked to review the user story You have detected some issues with this story:

1.it needs to cater for different user groups: a driver or disabled driver

2.it needs to cater for different vehicle types: a car. 4x4. van or motorbike

3.There are no acceptance criteria relating to how quick the booking process should be

4.How confirmation is to be sent for payment and space number, and other important details, have not been specified

5.A stub will be needed to test the payment method

Which pair of requirements engineering techniques are you MOST LIKELY to have used to uncover these issues’

SELECT ONE OPTION

Options:

A.

Diagrams and Story Mapping

B.

Story Mapping and use Cases

C.

Personas and Diagrams

D.

Storyboards and Personas

Question 22

You are defining the test approach for an Agile project release which is to develop an improved user interface for a golf club's booking system plus some additional features that will provide more flexible bookings across the three courses The improvements have been primarily driven by customer complaints that the booking system is difficult to follow and restrictive The release will be divided into six two-week sprints

The stakeholders have performed a risk assessment for the release and have determined that whilst the system is not mission critical, customer business could be lost and thus a risk level of High has been agreed. As there is may be a high degree of change to the screen design and functionality across the sprints, a regression-averse strategy is recommended.

Which option in the table below represents the BEST test approach for this release, where the following symbols apply?

♦+ (highly recommended)

♦ (recommended)

o (neutral/optlonal)

• (not recommended)

- (not to be used)

OptionTest AutomationExploratory Testing(manual) Black-box testing

1♦+0♦♦

2-+♦+

3♦+0-

4♦♦♦♦

SELECT ONE OPTION

Options:

A.

3

B.

1

C.

4

D.

2

Question 23

A unit test should be deterministic. Which option correctly describes the meaning of 'deterministic' as a characteristic of a unit test9

SELECT ONE OPTION

Options:

A.

It should be small so that many tests can be run in a short period of time

B.

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

C.

it should not depend on any other test.

D.

It should only test the functionality related to it.

Question 24

Why could test cases need to be refactored in an Agile project?

SELECT ONE OPTION

Options:

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

Question 25

You need to implement a Java class that validates a password entry field. The validation critena states that the password must:

1. be a minimum of 8 characters

2 contain at least one special character.

You are focusing on validation criterion 1 and have written a test class that checks that a 7 character password entry will fail validation.

You have written code designed to make this test class pass, however, on first execution of the test class it has failed

What should you do next9

SELECT ONE OPTION

Options:

A.

Repair the failing code and re-execute it for the test class

B.

Develop a test class with a 9 character password containing one special character and re-execute the code

C.

Add code to cover special character validation criterion 2

D.

Refactor the failing code to improve its design and structure

Question 26

Which statement about test automation is TRUE?

SELECT ONE OPTION

Options:

A.

Increasing test automation levels may decrease the frequency at which continuous deployments to production can be made

B.

Increasing test automation levels will eliminate the need for manual testing during continuous deployment

C.

Increasing test automation levels to increase the frequency of continuous deployment should always be an objective

D.

Minimizing the test suite by selecting, preparing and running only a subset of tests by using risk analysis should always be an objective

Question 27

Which statement is correct regarding the use of exploratory testing for safety critical systems?

SELECT ONE OPTION

Options:

A.

It should be used when black-box tests cannot be automated

B.

It is highly recommended for all risk levels

C.

It is not recommended, as manual black-box tests should be used instead

D.

It is highly recommended for low risk levels only

Question 28

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

Options:

A.

Personas

B.

Storyboards

C.

Use Cases

D.

Story Mapping

Question 29

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

Options:

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

Page: 1 / 7
Total 98 questions