iSQI CTAL-ATT Practice Test - Questions Answers, Page 3

List of questions
Question 21

''As the leader of the marketing department, I want to have a content management system so that my employees can edit and provide quality content to the readers''
Which of the following requirements engineering techniques would be the MOST effective for identifying and prioritizing user stories for the given Epic?
Question 22

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?
Question 23

Which of the following correctly describes positive characteristic of unit tests?
Question 24

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?
Question 25

What level of automation testing should be included in the production deployment process when continuous deployment is used?
Question 26

The following user story has been developed:
As a customer of Alpha Airways who has booked a flight
I want to access the flight reservation
So that I can update the booking details
Which BDD scenario written in Gherkin format correctly applies to this user story?
Question 27

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
Question 28

Which of the following statements about performing exploratory testing with test charters is correct?
Question 29

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?
Question 30

An increased proportion of automated test coverage often leads to a greater degree of manual testing that follows reactive strategies, because:
Question