Data Validation Quiz

1. What is the main process that ensures data entered into a system is correct, relevant, and consistent?
2. What is the primary goal of performing data validation?
3. Data validation is crucial for maintaining what key quality of data, which means it is accurate and reliable?
4. What is the benefit of catching errors through validation *early*, at the point of entry?
5. Data validation helps ensure **System Stability** by preventing which problems?
6. Which validation check ensures the input is in the correct form, such as a number, a date, or text?
7. Which validation check ensures a value falls within a predefined, acceptable minimum and maximum?
8. Which validation check ensures the input follows specific rules, such as a minimum or maximum character length?
9. Which validation check restricts the input to only two possible outcomes, typically 'Yes/No' or 'True/False'?
10. If an age field must be a number between 0 and 150, what type of check is used to verify the upper and lower limits?
11. If a password must be at least 8 characters long, what type of check is used to enforce this rule?
12. If a user enters the word "twenty" into a field designed to hold an integer, which validation check would fail?
13. A checkbox asking "Do you agree to the terms?" uses which of the four main validation check techniques?
14. What is the general term for the steps you take based on whether a validation check was successful or not?
15. What is the typical post-check action when the data is determined to be **valid**?
16. What is the typical post-check action when the data is determined to be **invalid**?
17. How does validation help improve the **User Experience**?
18. What specific security threat can data validation help prevent by checking input for unexpected characters or commands?
19. What are the two possible outcomes of any single data validation process?
20. Data validation ensures the data is accurate and trustworthy for the ultimate purpose of what?