Type of Test Data Flashcards
(8 cards)
What is Normal Data?
Data that precisely fits the criteria for a valid promotional code
Example: A1B2C3D4 (A code that meets the 8-character alphanumeric requirement)
What is Abnormal Data?
Data that does not meet the criteria and should be rejected by the input validation
Examples: XYZ (Too short), 1234567890 (Too long), !?#& (Non-alphanumeric characters)
What is Extreme Data?
The largest or smallest data values that are still within the valid range and should be accepted
Example: A1B2C3D4 (Exactly 8 characters, testing the upper limit if 8 is the maximum)
What is Boundary Data?
Data values that are on the edge of being valid or invalid to test the system’s handling of input limits
Examples: 1234567A (Just at the lower boundary) and A12345678 (Just over the upper boundary)
Fill in the blank: Normal Data is data that precisely fits the criteria for a valid _______.
promotional code
True or False: Abnormal Data should be accepted by the input validation.
False
Fill in the blank: Extreme Data tests the _______ limit of valid data.
upper
True or False: Boundary Data is used to test the system’s handling of input limits.
True