A _____ is a data validation rule that identifies values that are questionable, but not necessarily wrong.

A. sequence check
B. range check
C. validity check
D. reasonableness check

Answer: D

Computer Science & Information Technology

You might also like to view...

A series of text links across the top or bottom of a webpage is called the ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is the output of the following code?int *p;int x;x = 12;p = &x;cout << x << ", ";*p = 81;cout << *p << endl;

A. 12, 12 B. 12, 81 C. 81, 12 D. 81, 81

Computer Science & Information Technology