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

ISTQB CTAL-TTA Certified Tester Advanced Level Technical Test Analyst Exam Practice Test

Demo: 37 questions
Total 129 questions

Certified Tester Advanced Level Technical Test Analyst Questions and Answers

Question 1

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

Options:

A.

Both are used to examine source code before a program is executed. This is done by analysing a section of code against a set (or multiple sets) of coding rules.

B.

Both are used to reduce the costs of test environments by replacing real devices.

C.

Both provide run-time information on the state of the software code, e.g., unassigned pointers and the use and de-allocation of memory.

D.

Both provide an environment for unit testing in which a component can be tested in isolation with suitable stubs and drivers.

Question 2

Below is the pseudo-code for the bingo program:

The bingo program contains a data flow anomaly. Which data flow anomaly can be found in this program?

Options:

A.

Variable "MIN" is not assigned a value before using it.

B.

Variable "AB is defined but subsequently not used.

C.

An invalid value is assigned to variable "B".

D.

The hard-coded value '2" should not be used.

Question 3

You are working on a project that is integrating code from multiple development groups. There have been numerous integration problems, particularly regarding reliability, error recovery and transactional integrity. You are now responsible for planning the performance efficiency testing for this product. There Is a strong feeling among the development managers that some parts of the code are weaker than others and will tend to exhibit problems during the performance efficiency testing. To identify these problematic areas as soon as possible, which type of testing should you do?

Options:

A.

Load testing

B.

Interoperability testing

C.

Stress testing

D.

Scalability testing

Question 4

The requirements specification of a product begins with this sentence:

"The xyz system will provide many new user functions. These must be easy for our operators to use and tolerant of user input errors. These new functions must also be easy to learn. Because of very high transaction rates and limited processing power, the software design must be very efficient. The system must be available as close to 24x7 as possible.

Which three ISO 25010 major quality characteristics should be tested for possible defects with this implementation?

Options:

A.

Functional suitability, interoperability, learnability

B.

Usability, fault tolerance, operability

C.

Stability, security, accessibility

D.

Reliability, usability, performance efficiency

Question 5

Why might static analysis be used on an Agile project’

SELECT ONE OPTION

Options:

A.

To implement a test-driven approach at the component level

B.

To manually identify potential defects and thus avoid technical debt

C.

To clarify and simplify code design without changing its behavior

D.

To identify the causes of technical debt through the use of tools

Question 6

Which of the following is a valid reason for including security testing in a test approach?

Options:

A.

There is a threat of unauthorized copying of applications or data.

B.

To provide measurements from which an overall level of availability can be obtained.

C.

To evaluate the ability of a system to handle peak loads at or beyond the limits of its anticipated or specified workloads

D.

Software changes will be frequent after it enters production.

Question 7

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

Question 8

You are asked to provide a practical and pragmatic testing solution for a commercial system where the main user interface is via the Internet. It is critical that the company’s existing good name and market profile are not damaged in any way. Time to market is not a critical issue when appropriate testing solutions are identified to mitigate business risks.

A product risk assessment has revealed the following product risk:

• Abnormal application termination due to connection failure of the main interface.

Which of the following is the appropriate test type to address this risk?

Options:

A.

Performance efficiency testing

B.

Portability testing

C.

Reliability testing

D.

Operability testing

Question 9

Consider the pseudo code for the Price program:

Which of the following statements about the Price program describes a control flow anomaly to be found in the program?

Options:

A.

The Price program contains no control flow anomalies.

B.

The Price program contains unreachable code.

C.

The Price program contains data flow defects.

D.

The Price program contains an infinite loop.

Question 10

A medical company has performed a safety criticality analysis using the IEC61508 standard. The software components to be developed have been categorized by Safety Integrity Level (SIL). Most components have been rated at SIL 1 or 2, and a few components at SIL 4.

After some discussions with the QA manager, the project has decided to adhere to the recommendations for test coverage provided by the IEC61508 standard.

Which level and type of test coverage should at least be used for the components rated at Safety Integrity Level (SIL) 2?

Options:

A.

100% statement coverage, 100% decision coverage and 100% multiple condition coverage

B.

100% statement coverage, 100% decision coverage and 100% MC/DC coverage

C.

100% statement coverage and 100% decision coverage

D.

100% statement coverage

Question 11

Which of the following test categories would best characterize a test designed to confirm that the data backup tapes stored offsite by a bank can be retrieved and loaded within the business process service level agreement?

Options:

A.

Hazard testing

B.

Reliability testing

C.

Security testing

D.

Continuity testing

Question 12

Which of the following is a common technical issue that causes automation projects to fail to meet the planned return on investment?

Options:

A.

Insufficient planning for usability

B.

Failing to design for maintainability

C.

Designing for keyword-driven use

D.

Using capture-playback to do the initial capture of the window objects

Question 13

A software company based in Spain that develops mobile applications expects many small updates in the future, e.g., due to changing configurations and customer feedback. The company also wants to focus on being able to change the software effectively and efficiently during initial development without introducing new defects.

Which maintainability sub-characteristic should be covered by the test approach during the initial development?

Options:

A.

Analysability

B.

Modifiability

C.

Modularity

D.

Re-usability

Question 14

Which statement correctly describes continuous testing’

SELECT ONE OPTION

Options:

A.

Each modification made to the system triggers the tests that cover that change to be executed automatically.

B.

Each modification made to the system is automatically tested and then automatically made implemented in live

C.

Each new build of the system triggers deployment into a testing environment.

D.

Each new build of the system triggers a pre-defined set of tests to be executed automatically.

Question 15

You are testing software that will be used in nuclear power plants. The particular piece of code you are testing has been classified as SIL 2. The following section of code falls under this classification:

If ((A > B) or (C > D)) and (E = F) then print A

Endif

Which of the following sets of test data would supply the minimum tests needed to achieve the "highly recommended" level of coverage?

Options:

A.

Set 1

B.

Set 3

C.

Set 5

D.

Set 2

Question 16

Consider the following specification:

If you are flying with an economy ticket, there is a possibility that you may get upgraded to business class, especially if you hold a gold card in the airline’s frequent flier program. If you don’t hold a gold card, there is a possibility that you will get ‘bumped’ off the flight if it is full when you check in late.

This is shown in the control flow graph below. Note that each box (i.e., statement, decision) has been numbered.

Three tests have been run:

Test 1: Gold card holder who gets upgraded to business class

Test 2: Non-gold card holder who stays in economy

Test 3: A person who is bumped from the flight

What is the level of decision coverage achieved by these three tests?

Options:

A.

60%

B.

67%

C.

75%

D.

80%

Question 17

The following characteristics were identified during an early product risk-assessment for a software system:

• the software system needs to manage synchronization between various processes

• microcontrollers will be used that will limit product performance

• the hardware that will be used will make use of timeslots

• the number of tasks supported in parallel by the software system is large and are often highly complex.

Based on the information provided, which of the following non-functional test types is MOST appropriate to be performed?

Options:

A.

Maintainability testing

B.

Security testing

C.

Time-behaviour testing

D.

Portability testing

Question 18

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?

Options:

A.

Action, Expected Result, Error Message

B.

Action, Order ID

C.

Action, Order ID, Expected Result

D.

Order ID. Expected Result

Question 19

You are defining the test approach for an Agile project release focused on significantly overhauling the user interface of a golf club's booking system. Additional features will allow more flexible bookings across three courses. These changes are driven by numerous customer complaints about the current system's confusing design and limited options. The release will consist of six two-week sprints.

Stakeholders have performed a risk assessment and consider the impact of system failure as high due to potential customer loss. A regression-averse strategy is recommended due to the extensive changes expected in screen design and functionality.

Which option below represents the BEST test approach for this release? Please use the following symbols consistently:

  • ♦+ (highly recommended)
  • ♦ (recommended)
  • o (neutral/optional)
  • • (not recommended)
  • - (not to be used)

SELECT ONE OPTION

Options:

A.

3

B.

1

C.

4

D.

2

Question 20

A unit test should be deterministic. Which option correctly describes the meaning of 'deterministic' as a characteristic of a unit test9

SELECT ONE OPTION

Options:

A.

It should be small so that many tests can be run in a short period of time

B.

Whenever it is run under the same conditions, it should produce the same results.

C.

it should not depend on any other test.

D.

It should only test the functionality related to it.

Question 21

Why should security testing include testing for any cross-site scripting vulnerabilities?

Options:

A.

Because strings could be entered from the Ul that are too long for the code to handle safely

B.

Because encryption codes could be broken

C.

Because potentially malicious code could be inserted into the system

D.

Because a "man in the middle" could exist

Question 22

A new web site has been launched for a testing conference. There are a number of links to other related web sites for information purposes. Participants like the new site but complaints are being made that some (not all) of the links to other sites do not work.

Which type of test tool is most appropriate in helping to identify the causes of these failures?

Options:

A.

Review tool

B.

Hyperlink tool

C.

Static analysis tool

D.

Dynamic analysis tool

Question 23

Why could test cases need to be refactored in an Agile project?

SELECT ONE OPTION

Options:

A.

To maintain bi-directional traceability with the user stories

B.

To increase the breadth of black box coverage

C.

To make them easier to understand and cheaper to modify

D.

To ensure that the tests and code remained aligned

Question 24

At which test level would performance efficiency testing most likely be performed?

Options:

A.

Component testing

B.

Integration testing

C.

System testing

D.

User acceptance testing

Question 25

which statement about test approaches is TRUE7

SELECT ONE OPTION

Options:

A.

Test automation is not suitable when taking a Process-compliant test approach

B.

A Regression-averse test approach requires an ever-growing set of automated regression tests

C.

in a Model-based test approach, tests can be created automatically

D.

When taking a Reactive test approach, Increased test automation will reduce the time available for exploratory testing

Question 26

You need to implement a Java class that validates a password entry field. The validation critena states that the password must:

1. be a minimum of 8 characters

2 contain at least one special character.

You are focusing on validation criterion 1 and have written a test class that checks that a 7 character password entry will fail validation.

You have written code designed to make this test class pass, however, on first execution of the test class it has failed

What should you do next9

SELECT ONE OPTION

Options:

A.

Repair the failing code and re-execute it for the test class

B.

Develop a test class with a 9 character password containing one special character and re-execute the code

C.

Add code to cover special character validation criterion 2

D.

Refactor the failing code to improve its design and structure

Question 27

You are ar teviemng the fdbwng Java furxton that deteimates whether a curb*. rput by the user. * Even or Odd Public da»s Oddorfven {

public state void mair^Strcg [ | args) (

Scarcer read - new ScanrerfSystem inje

System out prim (’Pease enter a rxmber'i;

int Number • reader nextfntO,

if(Number^2»»0)

System out prrrtln "your input number 'Number ♦ * is even ).

else

System out prntirfyour input number 'Number ♦ * is odd*);

)

}

You are Qj>ded by ’.he following checklist

•All variables must start with a Capital letter

•All output messages must start with a Capita letter

•There must De a comment bne e« pla ning the purpose of the dess

How many checklist items Mve been fuelled7

SELECT ONE OPTION

Options:

A.

3

B.

None

C.

1

D.

2

Question 28

A component has been analysed during a risk-assessment and rated as highly critical. Which of the following white-box test techniques provides the highest level of coverage and could therefore be used to test this component?

Options:

A.

Decision testing

B.

Statement testing

C.

Multiple condition testing

D.

Modified condition/decision testing

Question 29

Consider the following control flow graph:

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.

Question 30

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

Question 31

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

Question 32

You are working on an internet banking project. Your company is offering this product to the financial market. For each new customer, some customization will typically be needed. To make the product successful there is a strong focus during development on a reliable and maintainable architecture. To support architectural reviews, a checklist will be developed. Within the checklist specific sections will be attributed to reliability and maintainability.

Which question from the list below should you include in the maintainability section of the architectural review checklist?

Options:

A.

Will the system use n-version programming for critical components?

B.

Will the user interface be implemented independently from the other software modules?

C.

Does the system have user-friendly error messages?

D.

Does the password protection of the system adhere to the latest regulations?

Question 33

Given the following code:

If x > y and z = 3 statement!

elseif z = 4 statement

endif;

What is the minimum number of tests needed to achieve 100% decision coverage?

Options:

A.

1

B.

2

C.

3

D.

4

Question 34

What is the purpose of an HTML checker?

Options:

A.

To verify compliance with standards

B.

To spell check the web site

C.

To verify proper data conversion

D.

To check for missing links

Question 35

Installability testing is usually conducted during which stage in the application's SDLC and usually includes which other types of testing?

Options:

A.

System testing, with functionality and usability testing

B.

Integration testing, with functionality and performance testing

C.

Unit testing, with security and performance testing

D.

Acceptance testing, with usability and accuracy testing

Question 36

Which statement about test automation is TRUE7

SELECT ONE OPTION

Options:

A.

The term ‘test automation' refers to the automation of test execution

B.

Test automation can encompass include the configuration of test environments

C.

Creating and maintaining test automation frameworks is better done within the iteration teams

D.

it is more effective to have a single automation strategy for large projects

Question 37

Which statement about test automation is TRUE?

SELECT ONE OPTION

Options:

A.

The number of test cases in the test suite increases by default from one iteration to another

B.

Test suite coverage can be increased without the need for refactoring

C.

Test development time should not consider changes to the test environments)

D.

Staff availability should not be allowed to constrain automated deployment

Demo: 37 questions
Total 129 questions