nerdexam
(ISC)2

CISSP · Question #530

Which of the following statements is TRUE regarding equivalence class testing?

The correct answer is C. An entire partition can be covered by considering only one representative value from that. Equivalence class testing (also called equivalence partitioning) divides input data into partitions where all values are expected to behave the same way, allowing testers to use a single representative value per partition.

Submitted by certguy· Mar 5, 2026Software Development Security

Question

Which of the following statements is TRUE regarding equivalence class testing?

Options

  • ATest inputs are obtained from the derived boundaries of the given functional specifications.
  • BIt is characterized by the stateless behavior of a process implemented in a function.
  • CAn entire partition can be covered by considering only one representative value from that
  • DIt is useful for testing communications protocols and graphical user interfaces.

How the community answered

(38 responses)
  • A
    3% (1)
  • B
    3% (1)
  • C
    89% (34)
  • D
    5% (2)

Why each option

Equivalence class testing (also called equivalence partitioning) divides input data into partitions where all values are expected to behave the same way, allowing testers to use a single representative value per partition.

ATest inputs are obtained from the derived boundaries of the given functional specifications.

Deriving test inputs from boundaries of functional specifications describes boundary value analysis (BVA), which is a related but distinct black-box testing technique that focuses on edge values rather than representative partitions.

BIt is characterized by the stateless behavior of a process implemented in a function.

Stateless behavior of a process implemented in a function describes a characteristic associated with functional or unit testing concepts, not equivalence class testing, which is concerned with grouping inputs into valid and invalid partitions.

CAn entire partition can be covered by considering only one representative value from thatCorrect

The fundamental principle of equivalence class testing is that all values within a partition (equivalence class) are assumed to be processed identically by the system under test. Therefore, testing one representative value from each partition is sufficient to validate the behavior of the entire class, reducing the total number of test cases needed while maintaining coverage.

DIt is useful for testing communications protocols and graphical user interfaces.

Testing communications protocols and graphical user interfaces is a characteristic associated with state transition testing (also called finite state machine testing), which models system behavior based on states and transitions, not equivalence partitioning.

Concept tested: Equivalence partitioning representative value coverage principle

Source: https://www.istqb.org/certifications/certified-tester-foundation-level

Topics

#software testing#equivalence class testing#quality assurance

Community Discussion

No community discussion yet for this question.

Full CISSP Practice