100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
ISTQB Glossary Questions and Answers 2024 $13.49   Add to cart

Exam (elaborations)

ISTQB Glossary Questions and Answers 2024

 3 views  0 purchase
  • Course
  • ISTQB
  • Institution
  • ISTQB

Exam of 34 pages for the course ISTQB at ISTQB (ISTQB Glossary)

Preview 4 out of 34  pages

  • October 27, 2024
  • 34
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • ISTQB
  • ISTQB
avatar-seller
julianah420
ISTQB Glossary

Acceptance Criteria - answerThe exit criteria that a component or system must satisfy in
order to be accepted by user, customer, or other authorized entity.

Acceptance Testing - answerFormal testing with respect to user needs, requirements,
and business processes conducted to determine whether or not a system satisfies the
acceptance criteria and to enable the user, customer or other authorized entity to
determine whether or not to accept the system.

Accuracy - answerThe capability of the software product to provide the right or agreed
results or effects with the needed degree of precision.

Actor - answerUser or any other person or system that interacts with the system under
test in a specific way.

Actual Result - answerThe behavior produced/observed when a component or system
is tested.

Ad Hoc Testing - answerTesting carried out informally; no formal test preparation takes
place, no recognized test design technique is used, there are no expectations for results
and arbitrariness guides the test execution activity

Agile Manifesto - answerA statement on the values that underpin agile software
development. The values are:
-individuals and interactions over processes and tools
-working software over comprehensive documentation
-customer collaboration over contract negotiations
-responding to change over following a plan.

Agile Software Development - answerA group of software development methodologies
based on iterative incremental deveolpment, where requirements and solutions evolve
through collaboration between self-organizing cross-functional teams.

Alpha Testing - answerSimulated or actual operational testing by potential
users/customers or an independant test team at the developers site but outside the
development organization. Alpha testing is often employed for off-the-shelf software as
a form of internal acceptance testing.

API (application programming interface) Testing - answerTesting the code which
enables communication between different processes, programs and/or systems. API
testing often involves negative testing, e.g., to validate the robustness of error handling.

,Attack - answerDirected and focused attempt to evaluate the quality, especially
reliability, of a test object by attempting to force specific failures to occur. See negative
testing.

Audit Trail - answerA path by which the original input to a process(e.g. data) can be
traced back through the process, taking process output as a starting point. This
facilitates defect analysis and allows a process audit ti be carried out.

Automated Testware - answerTestware used in automated testing, such as tool scripts.

Availability - answerThe degree to which a component or system is operational and
accessible when required for use. Often expressed as a percentage.

Back-to-Back Testing - answerTesting in which two or more variants of a component or
system are executed with the same inputs, the outputs compared, and analyzed in
cases of discrepancies.

Baseline - answerA specification or software product that has been formally reviewed or
agreed upon, that thereafter serves as the basis for further development, and that can
be changed only through a formal change process.

Basic Block - answerA sequence of one or more consecutive executable statements
containing no branches. Note: a node in a control flow graph represents a basic block.

Basis Test Set - answerA set of test cases derived from the internal structure of a
component or specification to ensure that 100% of a specified coverage criterion will be
achieved.

Behavior - answerThe response of a component or system to a set of input values and
preconditions.

Benchmark Testing - answer(1) A standard against which measurements or
comparisons can be made. (2) A test that is used to compare components or systems to
each other or to a standard as in (1)

Bespoke Software - answerSoftware developed specifically for a set of users or
customers. The opposite is off-the-shelf software.

Best Practices - answerA superior method or innovative practice that contributes to the
improved performance of an organization under given context, usually recognized as
the best by other peer organizations.

Beta Testing - answerOperational testing by potential and/or existing customers/users
at an external site not otherwise involved with the developers, to determine whether or
not a component or system satisfies the customer/user needs and fits within the

,business process. Beta testing is often employed as a form of external acceptance
testing for off-the-shelf software in order to acquire feedback from the market.

Big-bang Testing - answerAn integration testing approach in which software elements,
hardware elements, or both are combined all at once into a component or an overall
system, rather than in stages. See also integration testing.

Black Box Test Design Technique - answerProcedure to derive and/or select test cases
based on an analysis of the specification, either functional or non-functional, of a
component or system without reference to its internal structure.

Black Box Testing - answerTesting, either functional or non-functional, without reference
to the internal structure of the component or system.

Blocked Test Case - answerA test case that cannot be executed because the
preconditions for its execution are not filled.

Bottom-up Testing - answerAn incremental approach to integration testing where the
lowest level components are tested first, and then used to facilitate the testing of higher
level components. This process is repeated until the component at the top of the
hierarchy is tested. See also integration testing.

Boundary Value - answerAn input value or output value which is on the edge of an
equivalence partition or at the smallest incremental distance on either side of an edge,
for example the minimum or maximum value of a range.

Boundary Value Analysis - answerA black box test design technique in which test cases
are designed based on boundary values.

Boundary Value Coverage - answerThe percentage of boundary values that have been
exercised by a test suite.

Boundary Value Testing - answerSee boundary value analysis.

Branch - answerA basic block that can be selected for execution based on a program
construct in which one of two or more alternative program paths is available e.g. case
jump, go to, if-then-else.

Branch Coverage - answerThe percentage of branches that have been exercises by a
test suite. 100% branch coverage implies both 100% decision coverage and 100%
statement coverage.

Branch Testing - answerA white box test design technique in which test cases are
designed to execute branches.

, Buffer - answerA device or storage area used to store data temporarily for differences in
rates of data flow, time or occurrence of events, or amounts of data that can be handled
by the devices of processes involved in the transfer or use of the data

Buffer Overflow - answerA memory access failure due to the attempt by a process to
store data beyond the boundaries of a fixed length buffer, resulting in overwriting of
adjacent memory areas or the raising of an overflow exception.

Build Verification Test - answerA set of automated test which validates the integrity of
each new build and verifies its key/core functionality, stability and testability. It is an
industry practice when a high frequency of build releases occurs (e.g. agile process)
and it is run on every new build before the build is released for further testing. See also
regression and smoke testing.

Burndown Chart - answerA publicly displayed chart that depicts the outstanding effort
versus time in an iteration. It shows the status and trend of completing the tasks of the
iteration. The X-axis typically represents days in the sprint , while the Y-axis is the
remaining effort in engineering hours or story points.

Business Process-Based Testing - answerAn approach to testing in which test cases
are designed based on descriptions and/or knowledge of business processes.

BVT - answerBuild Verification Test

Call Graph - answerAn abstract representation of calling relationships between
subroutine in a program.

CASE - answerComputer Aided Software Engineering

Cast - answerComputer Aided Software Testing

Certification - answerThe process of confirming that a component, system or person
complies with its specified requirements, e.g. by passing an exam

Classification Tree - answerA tree showing equivalence partitions hierarchically
ordered, which is used to design test cases in the classification tree method.

Classification Tree Method - answerA black box test design technique in which test
cases, described by means of a classification tree, are designed to execute
combinations of representatives of input and/or output domains.

Code - answerComputer instructions and data definitions expressed in a programming
language or in a form output by an assembler, compiler or other translator.

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller julianah420. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $13.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

75632 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$13.49
  • (0)
  Add to cart