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...
To access an array element, use the array name and the element's ___________.
a. data type b. subscript c. value d. name e. None of these
Case-Based Critical Thinking QuestionsCase 7-1Max wants to save a worksheet as a Web page. What should he do?Part of Max's worksheet contains formatting that cannot be duplicated in a Web page. He is notified of the problem areas and is given the option of _____.
A. canceling B. continuing with the save C. both canceling and continuing with the save D. either canceling or continuing with the save
Valid arguments to the System.out object’s println method include:
(a) “Anything with double quotes” (b) String variables (c) Variables of type int (d) All of the above
________ is the correct way to create a new two-dimensional integer array myArray with 5 rows and 5 columns.
``` a) int myArray[][] = new int[ 5 ][ 5 ] b) int myArray[ 2 ] = new int( 5, 5 ) c) int myArray[ , ] = new int[ 5, 5 ] d) int myArray[] = new int[ 5, 5 ] ```