Multiple choice

A range check _____

  1. ensures that only the correct data type is entered into a field

  2. verifies that all required data is present

  3. determines whether a number is within a specified limit

  4. tests if the data in two or more associated fields is logical

  5. None of these

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

A range check validates that entered data falls within specified minimum and maximum boundaries. It's different from type checking (ensures correct data type), completeness check (ensures required fields are filled), or consistency check (ensures logical relationships between fields).