What is a Range check?
AUse information about the input to check if it is reasonable rather than an extreme value
BCheck that the input falls within a known range
CNone of the mentioned
DCheck that the input does not exceed some maximum size e.g. 40 characters for a name
Correct answer
B. Check that the input falls within a known range
Explanation
The correct answer is Check that the input falls within a known range.