What data types would you use for the following fields: price, phone number, streetaddress, ZIP code, and notes about product usage?

What will be an ideal response?

Price Currency
Phone Number Short text with an input mask
Street Address Short text
Zip Code Short text (with an input mask if it is a 9-digit ZIP code)
Notes about product usage Long text

Computer Science & Information Technology

You might also like to view...

Match the following terms to their meanings:

I. DTD A. Rules that allow server and client computers to transfer information II. HTML B. Indicates which type of XHTML rules Web page follows III. XHTML C. Sets standard rules for XHTML documents IV. XML D. Markup language no longer supported by W3C V. HTTP E. Replaced HTML

Computer Science & Information Technology

What value is assigned to q in the statement

q = f(3, 3, 4); if f is defined as follows? ``` int f(int q, int b, int c) { int p; p = q * b + 2 * c; return (p); } ``` a. 17 b. 36 c. 44 d. 50 e. none of the above

Computer Science & Information Technology