Summer Special 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: bestdeal

Free ISTQB CTAL-TTA Practice Exam with Questions & Answers | Set: 5

Questions 41

Which of the following is a reason for the Technical Test Analyst to take the time to prepare for a code review?

Options:
A.

Allows the reviewer time to consider the Interaction of the item being reviewed with other items In the system

B.

Allows time to prepare the test data

C.

Allows time to gather the test metrics for management review

D.

Allows time to plan the design and implementation of the item being reviewed

ISTQB CTAL-TTA Premium Access
Questions 42

Which of the following is a true statement regarding a continuous integration environment?

Options:
A.

Builds are done regularly every night

B.

Automation tools are used to verify the results of the build

C.

Unit testing is performed manually by the developers prior to code check in

D.

Performance efficiency testing is conducted for every accepted build

Questions 43

How many test cases need to be designed to achieve 100% decision coverage in the following piece of pseudo-code which applies discount rates to hotel room bookings?

Read (Loyalty_level)

Read (Room_price)

IF (Room_price > 200)

IF (Loyalty_level = Platinum)

Discount_factor = 80%

ELSE

IF (Loyalty_level = Gold)

Discount_factor = 85%

ELSE

Discount_factor = 95%

ENDIF

ENDIF

ELSE

IF (Room_price > 150)

IF (Loyalty_level = Platinum)

Discount_factor = 85%

ELSE

Discount_factor = 95%

ENDIF

ELSE

Discount_factor = 100%

ENDIF

ENDIF

Room_price = Room_price * Discount_factor

IF (Discount_factor < 100%)

Show message "Congratulations - you have received a discount!"

ENDIF

Options:
A.

4

B.

6

C.

7

D.

8

Questions 44

Given the following decision: IF X < 5 OR Y > 10 THEN

And the following test inputs: X=6 and Y=12, X=5 and Y=10

Which of the following additional sets of test inputs will ensure that full Multiple Condition coverage is achieved?

Options:
A.

X=4 and Y=7

X=10 and Y=15

X=8 and Y=8

B.

X=0 and Y=10

X=4 and Y=4

C.

X=2 and Y=12

X=6 and Y=4

D.

X=3 and Y=10

X=0 and Y=15

Questions 45

Which option describes a good practice when applying test automation for a Regression-averse test approach?

SELECT ONE OPTION

Options:
A.

Developing and maintaining automated test checklists to efficiently execute a stable set of tests

B.

Applying BDD to produce automated tests before the implementation of a user story

C.

Focusing on the continuous improvement and refactoring of the automated tests

D.

Increasing automated test coverage to allow more time for exploratory testing

Questions 46

You are working for a video game manufacturer You have a new title being released Market interest in the product is at an all time high and everyone in the company has been promised huge bonuses if the launch is successful You are responsible for portability testing Which area, m particular should you emphasize in your testing?

Options:
A.

Installability

B.

Replaceability

C.

Analyzability

D.

Learnability

Questions 47

Which of the following statements about Application Programming Interface (API) testing is TRUE?

Options:
A.

API testing cannot be applied to distributed systems

B.

Combinatorial testing cannot be applied to API testing

C.

API testing may require the use of specialized tools

D.

APIs are loosely coupled, so timing glitches will not happen

Questions 48

Which of the following statements is TRUE regarding tools that support component testing and the build process?

Options:
A.

Component testing and build automation tools are only used by developers.

B.

Build automations tools facilitate manual testing at a low level by allowing the change of variables values during test execution.

C.

Component testing tools are typically specific to the programming language and may be used to automate unit testing.

D.

Component testing tools are the basis for a continuous integration environment.

Questions 49

Given the following decision: IF X < 5 OR Y > 10 THEN

Which of the following sets of test inputs will achieve full MC/DC coverage?

Options:
A.

X=4 and Y=7

X=6 and Y=12

X=5 and Y=10

B.

X=4 and Y=11

X=7 and Y=10

C.

X=5 and Y=8

X=2 and Y=12

X=4 and Y=4

D.

X=3 and Y=10

X=5 and Y=15

X=0 and Y=15

Questions 50

Consider the following control flow graph:

CTAL-TTA Question 50

The control flow represents a software component of a car navigation system. Within the project the maximum cyclomatic complexity to be allowed is set at 5.

Which of the following statements is correct?

Options:
A.

No defect needs to be reported since the cyclomatic complexity of the component is calculated at 3.

B.

No defect needs to be reported since the cyclomatic complexity of the component is calculated at 4

C.

No defect needs to be reported since the cyclomatic complexity of the component is calculated at 5.

D.

A defect needs to be reported since the cyclomatic complexity of the component is calculated at 6.