CTAL-ATT試験無料問題集「ISQI ISTQB Advanced Level Agile Technical Tester 認定」
You are an experienced tester on an Agile team that is producing a new application. The product backlog has been refined sufficiently to begin development for the first release. This stories in this backlog contain a mixture of functional and non-functional requirements, as well as some technical stories that will provide elements of the application's infrastructure The developers have decided to use TDD as a deveiopment approach but automation of the acceptance tests is not yet planned.
You have been asked to recommend whether or not the team should take an atdd approach as well as TDD.
what would be the BEST recommendation in these circumstances?
SELECT ONE OPTION
You have been asked to recommend whether or not the team should take an atdd approach as well as TDD.
what would be the BEST recommendation in these circumstances?
SELECT ONE OPTION
正解:A
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Consider the following section of pseudocode:
function getPassword() {
var x;
var y;
var z;
var passwordGood = false
// Get password from user, user is allowed 3 tries
do until x = 3
call getPassword (password)
if password is good
x = 3
passwordGood = true
else
X = X + 1
display "Password is not valid, try again''
endif
If passwordGood <> true
display "You exceeded the number of tries to enter a password. Your account is now locked. Call customer service." endif endloop
}
For this section of code, which of the following issues should be identified during a code review?
* Variables have not been properly defined with meaningful names
* There are unused variables defined
* Divisors are not tested for zero
* Loop counters are not properly initialized
* There are endless loops
* There are statements within the loop that should be outside the loop
function getPassword() {
var x;
var y;
var z;
var passwordGood = false
// Get password from user, user is allowed 3 tries
do until x = 3
call getPassword (password)
if password is good
x = 3
passwordGood = true
else
X = X + 1
display "Password is not valid, try again''
endif
If passwordGood <> true
display "You exceeded the number of tries to enter a password. Your account is now locked. Call customer service." endif endloop
}
For this section of code, which of the following issues should be identified during a code review?
* Variables have not been properly defined with meaningful names
* There are unused variables defined
* Divisors are not tested for zero
* Loop counters are not properly initialized
* There are endless loops
* There are statements within the loop that should be outside the loop
正解:D
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You have been asked to supply the list of keywords for a keyword-driven test automation script that will be used to test the following story:
As a customer, I want to be able to add and delete items from my shopping cart, so that I can buy the right number of items and still get free shipping on some of the items.
The automation will add and delete items from a customer's shopping cart and will then verify that the total shipping cost is correct. The test automation library has a large set of keywords that have been coded to support this e-commerce site. Which of the following is the smallest set of keywords that contains the ones needed to support testing this story?
As a customer, I want to be able to add and delete items from my shopping cart, so that I can buy the right number of items and still get free shipping on some of the items.
The automation will add and delete items from a customer's shopping cart and will then verify that the total shipping cost is correct. The test automation library has a large set of keywords that have been coded to support this e-commerce site. Which of the following is the smallest set of keywords that contains the ones needed to support testing this story?
正解:C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You want to get information from a large set of users to help define acceptance criteria for a set of stories. You want to use questions with predefined answers and allow the user to select the best answer from that set. What type of elicitation technique would be most efficient to use?
正解:B
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
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?
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?
正解:C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
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?
正解:C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)