Selecting & Using Suitable Test Data (OCR GCSE Computer Science): Quizzes
📚Quizzes
Practise the questions
12 questions from this quiz
ShowHide
Practise the questions
12 questions from this quiz
What is test data used for in programming?
What is test data used for in programming?
To check how the system behaves
What type of data represents typical, expected input values?
What type of data represents typical, expected input values?
Normal/Valid data
For a range 1-10, which value is an example of normal test data?
For a range 1-10, which value is an example of normal test data?
5
What is boundary test data?
What is boundary test data?
Data on the edge of being valid
For a range 1-10, which values are boundary test data?
For a range 1-10, which values are boundary test data?
1 and 10
What is invalid data?
What is invalid data?
Correct type but outside valid range
For a range 1-10, which is an example of invalid data?
For a range 1-10, which is an example of invalid data?
11
What is erroneous data?
What is erroneous data?
Data that is the wrong type
Which is erroneous data when a program expects a number?
Which is erroneous data when a program expects a number?
A
What does a test plan outline?
What does a test plan outline?
The approach for testing a program
Which is NOT a key component of a test plan?
Which is NOT a key component of a test plan?
Program source code
Why use boundary test data?
Why use boundary test data?
To check handling of limit values
