Multiple choice technology testing

What is the method used for Parameter Selection & Parameter combination to test API calls

  1. Random input parameter

  2. Sequence inputs

  3. Boundary value conditions.

  4. Data points

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Boundary value analysis is a fundamental testing technique that systematically tests parameters at their limits and edges. For API testing, this means testing minimum values, maximum values, values just beyond boundaries, and edge cases. Random inputs and sequences don't provide systematic coverage, and 'data points' is too vague.