Spring Sale Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

Certified Tester Advanced Level Technical Test Analyst

Last Update 3 hours ago Total Questions : 175

The Certified Tester Advanced Level Technical Test Analyst content is now fully updated, with all current exam questions added 3 hours ago. Deciding to include CTAL-TTA practice exam questions in your study plan goes far beyond basic test preparation.

You'll find that our CTAL-TTA exam questions frequently feature detailed scenarios and practical problem-solving exercises that directly mirror industry challenges. Engaging with these CTAL-TTA sample sets allows you to effectively manage your time and pace yourself, giving you the ability to finish any Certified Tester Advanced Level Technical Test Analyst practice test comfortably within the allotted time.

Question # 11

You are working on a complex systems integration project that will soon be deployed to the production environment. This system is replacing a system that was popular with the users and had no outstanding non-functional issues. There are multiple components that interact and these have been developed by various development and testing groups including some outsourced groups. You will be leading the performance testing effort. Although you would prefer to have a dedicated test system for this effort, you will have to use the production system. You can do this testing at a low usage time, but there will be some users on the system and you will be using real data for the tests. You are now planning your performance testing. Unfortunately, there are no requirements for the performance requirements of the system. How do you determine the acceptable performance levels for the various operational profiles?

A.

You should check the performance of the legacy system and use that as a benchmark for the new system

B.

You should ask the users what they expect to see for the performance

C.

You should go back to the business analysts and require them to update the requirements to include the performance expectations

D.

You should use industry standard performance benchmarks

Question # 12

You are testing software that requires you to enter defined order numbers and either add, delete or update the information associated with that order number, which of the following is the minimum set of columns you should see in your keyword-driven input table?

A.

Action, Expected Result, Error Message

B.

Action, Order ID

C.

Action, Order ID, Expected Result

D.

Order ID. Expected Result

Question # 13

Given the following pseudocode:

Program tax check

Integer: tax_rate

real: tax%

BEGIN

tax% := 0

GET (tax_rate)

WHILE tax_rate > 0 loop

IF tax_rate > 3 THEN

tax_rate := 3

ENDIF

tax% := tax% + (tax_rate / 10)

tax_rate := tax_rate - 1

ENDLOOP

IF tax% > 0.6 THEN

print ( " tax rate is high " )

ELSEIF tax% < 0.1 THEN

print ( " tax rate is zero " )

ELSE

print ( " tax rate is low " )

ENDIF

END tax check

If control flow analysis is performed on the pseudocode, which of the following results is MOST likely?

A.

Unreachable code at line 15

B.

Unreachable code at line 17

C.

No unreachable code

D.

Infinite loop from line 7 to line 13

Question # 14

Which of the following are activities that the Technical Test Analyst performs when setting up a test automation project?

1. Schedule the manual testing

2. Define interface requirements between tools

3. Perform a code review on the functional specifications

4. Determine whether to use a rule-dnven approach

5. Tram the test analysts to use and supply the data

A.

1.2

B.

3. 5

C.

1.4

D.

2,5

Question # 15

BestFor Incorporated is a rapidly growing online financial services company that offers guidance to its customers on a range of financial products. Its first website, BestForMortgages, was launched two years ago, shortly followed by BestForPensions. The popularity of both sites has driven the company to expand its offerings into other sectors and a third website, BestForFood, has recently been released.

The first two websites have proven to be functionally robust but suffered from performance issues due to:

Underestimation of concurrent user access at peak times in its original operational profiles

Data volumes rapidly growing beyond expectations on a single database shared by both sites.

All three websites share the same web server.

The BestForFood system has been running live for several months, however the following significant non-functional defects have been recorded:

A) The layout and navigation of the BestForFood website was not considered by the users as consistent with BestForPensions and BestForMortgages

B) Soon after delivering the BestForFood system the performance of both BestForPensions and BestForMortgages noticeably slowed

C) The time taken to diagnose, repair and re-test production defects did not meet BestForFood service level agreements

D) BestForFood performance was adversely impacted by unexpected growth in data volumes

E) The time taken to install monthly builds into the production system exceeded agreed timescales.

Which TWO of these defects might have been prevented had portability testing and compatibility testing been employed?

A.

a and b

B.

c and e

C.

b and c

D.

a and d

Question # 16

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

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

Question # 17

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?

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

Question # 18

Below is pseudo-code which calculates a customer ' s cruise credits based on past cruise history:

PROGRAM CALC CRUISE CREDITS (CUST_ID) COUNT_CRUISES, CRUISE_CREDITS, LOYALTY_RATING: INTEGER CRUISE_LENGTH, CRUISE_ACCOM_TYPE: VAR

    LOYALTY_RATING = 0

    COUNT_CRUISES = 0

    CRUISE_LENGTH = 0

    CRUISE_ACCOM_TYPE = 0

    BEGIN

    READ CUSTOMER ' S CRUISE HISTORY TO OBTAIN COUNT OF CRUISES

    READ CRUISE_HISTORY (CUST_ID)

    WHILE COUNT_CRUISES != -1 DO

    READ CUSTOMER ' S NEXT CRUISE

    READ NEXT_CRUISE

    IF CRUISE_ACCOM_TYPE = 3 THEN

    CRUISE_CREDITS = CRUISE_CREDITS + 5

    ELSE

    IF CRUISE_ACCOM_TYPE = 2 THEN

    CRUISE_CREDITS = CRUISE_CREDITS + 3

    ELSE

    CRUISE_CREDITS = CRUISE_CREDITS + 2

    ENDIF

    ENDIF

    COUNT_CRUISES = COUNT_CRUISES - 1

    ENDWHILE

    LOYALTY_RATING = CRUISE_CREDITS / COUNT_CRUISES

    WRITE ( " CRUISE CREDIT TOTAL IS: " )

    WRITE (CRUISE_CREDITS)

    END PROGRAM CALC CRUISE CREDITS

The code contains data flow anomalies on lines 14 and 27. Which examples of data flow anomalies can be found on these lines?

A.

Line 14: Cruise_Credits is not assigned a value (defined) before being used Line 27: Loyalty_Rating is defined but not subsequently used

B.

Line 14: Cruise_Credits is defined but not subsequently used Line 27: Loyalty_Rating is not assigned a value (defined) before being used

C.

Line 14: Cruise_Credits is re-defined before being used Line 27: Loyalty_Rating is defined but not subsequently used

D.

Line 14: Cruise_Credits should not be declared as an integer Line 27: Loyalty_Rating should be calculated within the While loop

Question # 19

The stakeholders in a new system want its mean time between failure to be three months or longer, with a mean time to repair the system of ten minutes or less when it does fail. When planning and specifying reliability tests to be performed before release, which ONE of the following is a factor that must be considered?

A.

Defining the replaceability requirements

B.

Determining the target availability for the system

C.

Monitoring reliability in production

D.

Configuring a production-like test environment

Question # 20

Which of the following can be executed by model-based testing tools?

A.

A finite state machine

B.

An operational profile

C.

A computational model

D.

A use case profile

Go to page: