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

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

Questions 21

Consider the following pseudocode segment:

set a = 1

while a < 12

display “this is loop", a

if a > 10 then

display "loop is > 10’

set a = 5

else

display “loop is < 11*

endif

end while

display “Final value of a is", a

Which of the following issues should be detected in the code review?

Options:
A.

Loop termination is not achievable

B.

Rounding errors on the loop counters could cause problems

C.

Variables are used before they are initialized

D.

Some of the code could be moved to re-usable functions

ISTQB CTAL-TTA Premium Access
Questions 22

You are working for a company that has a product in the field that has reached its capacity. The system cannot handle any more users without a significant degradation in performance and a significant spike in resource requirements. As a result, your new product has strict requirements for performance efficiency and a specific growth requirement that is estimated for the next three years.

What type of testing should you conduct to make sure the future requirements will be met?

Options:
A.

Time-behavior testing

B.

Load testing

C.

Scalability testing

D.

Stress testing

Questions 23

When conducting a data flow analysis of following section of pseudo code:

Declare Function_Biggest integer (inputl integer. Input2 Integer) }

Declare output Integer

Set output = inputl

If input2 > output then

Set output = input2

Endif

Return output

}

Which of the variables utilized above has a potential anomalie?

Options:
A.

Inputl and input2

B.

None of the variables

C.

output

D.

Function_Biggest

Questions 24

The following User story is being developed using the 8DD approach:

As a Purchasing Manager

i want to see a list of all Purchase Orders placed so far this month with their total value

So that I can control the amount of money being spent

Which scenario is BOTH written in correct Gherkin format AND is appropriate for this User Story9

SEI ECT ONE OPTION

Options:
A.

Given that three Purchase Orders with a total value of £21.75 have been placed so far this month AND the Purchasing Manager has navigated to the Purchase Order Reporting page

When the Purchasing Manager clicks the button 'List of Purchase Orders placed this month’

Then the 3 orders and their total value of £21.75 are displayed

B.

Given that three Purchase Orders with a total value of £21.75 have been placed so far this month

When the Purchasing Manager requests the list of Purchase Orders placed this month

Then the appropriate details are displayed

C.

Given that I am a Purchasing Manager AND three Purchase Orders with a total value of £21.75 have been placed so far this month

When I request the list of Purchase Orders placed this month

Then all orders and their total value of £21.75 are displayed

D.

Given that three Purchase Orders with a total value of £21.75 have been placed so far this month

When the Purchasing Manager requests the list of Purchase Orders placed this month

Then the 3 orders and their total value of £21.75 are displayed

Questions 25

You have been assigned the task of defining the risk-based approach to testing the performance efficiency of a new application. Which of the following is an ISTQB defined technique to use for Identifying the risks?

Options:
A.

Reviewing the unit testing that has already been conducted on the application to verify performance efficiency

B.

Analyzing the requirements to look for areas where performance efficiency requirements have not been well-defined

C.

Interviewing performance efficiency experts to determine what areas are likely to contain the highest levels of risk

D.

Conducting a hazard analysis with the non-technical business stakeholders to identify areas in the code that are likely to contain high levels of performance efficiency risk

Questions 26

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

Questions 27

What is the earliest stage in the application's SDLC at which performance efficiency testing can be performed?

Options:
A.

During requirements analysis

B.

During unit testing

C.

During system testing

D.

During beta testing

Questions 28

Within the world of consumer electronics, the amount of embedded software is growing rapidly. The amount of software in high-end television sets has increased by a factor of about eight over the last six years. In addition, the market of consumer electronics has been faced with a 5 -10% price erosion per year. The price of a product is, among a number of other things, determined by the microcontroller used. Therefore, the use of ROM and RAM remains under high pressure in consumer electronic products, leading to severe restrictions on code size.

You are a Technical Test Analyst involved in the review of the architecture of this project.

Which of the following issues would be MOST important to focus on during the review and when verifying the correct implementation?

Options:
A.

Connection pooling

B.

Caching

C.

Transaction concurrency

D.

Lazy instantiation

Questions 29

A product risk assessment has revealed the following product risks:

• lack of usability requirements

• security during on-line transactions

• perceived performance of the system and response time from the user interface

• a required availability of almost 100%

To address the 4th risk, which of the following quality characteristics for technical testing should be part of the test approach?

Options:
A.

Adaptability

B.

Reliability

C.

Portability

D.

Compatibility

Questions 30

Consider the following code segments.

Segment 1:

If a > b then setc = 12

elseif c >7 set c = 5

endif

Segment 2: setc= 12 for n = 1 to c

display c

endfor

Segment 3:

If (a > b) or (c < d) then

set c = 12

else

set c = 5

endlf

Segment 4:

set y = 4

call (segments)

segments:

start

for I = 1 to y

print y

endfor

end

Which segment would receive the highest cyclomatic complexity value?

Options:
A.

Segment 1

B.

Segment 2

C.

Segment 3

D.

Segment 4