Critical Thinking Questions
Case 9-1
?
An employee at PrattLast Associates needs to create an input mask for the five-digit postal code in the Account table. The employee also wants to ensure that data is entered in the Resources Needed field but there may be times when an entry in the Resources Needed field is not appropriate.
If the Allow Zero Length property has the value Yes, what should you enter in the Resources Needed field when an entry is not appropriate?
a. parentheses ( ) b. number sign (#) c. zero length string ("") d. exclamation point (!)
What will be an ideal response?
Answer: C
Computer Science & Information Technology
You might also like to view...
A chart in a presentation can be edited in Excel and updated in the presentation
Indicate whether the statement is true or false
Computer Science & Information Technology
Jodi is new to Java generics. She has proposed the following method. Will it work? If not, what has to be changed to make it work?
``` 1 // method to compute total perimeter of a collection of Shapes 2 public double totalPerimeter( Collection> c ) { 3 double total = 0.0; 4 5 for( Shape s : c ) 6 total = total + s.getPerimeter(); 7 return total; 8 } ```
Computer Science & Information Technology