Why is it important for the server software to scan all of the input for errors before sending a message to the user?
What will be an ideal response?
) It’s important to list as many errors as possible when sending an error message to a user. This gives a user the chance to correct all of the errors in one try before resending the form. If the software only scans until the first error is found, then there is a possibility that there are additional errors that will not be detected until the user resends the form. Catching as many errors as possible speeds form processing.
You might also like to view...
Does Amazon RDS for SQL Server currently support importing data into the msdb database?
A. No B. Yes
Which of the following code segments does not contain any errors?
a) void printnum (int x) { print("%i", x); return x; } b) int cube(int s) { int s; return (s * s * s); } c) double triple(float n) { return (3 * n); } (d) double circumference (int r) return (3.14 * 2 * r);