Which data type allows field values to contain letters, digits, and other characters?
A. Short Text
B. AutoNumber
C. Currency
D. Date/Time
Answer: A
You might also like to view...
The Start arrow on the Animation tab displays each of the following options EXCEPT ________
A) With Previous B) Automatic C) After Previous D) On Click
The Office Clipboard only holds a single item
Indicate whether the statement is true or false
In style rule syntax, a ____ specifies the element to which the rule applies, as shown in the accompanying figure.
A. declaration B. selector C. property D. value
Case-Based Critical Thinking QuestionsCase 1: MTN OutdoorYou have just started working for MTN Outdoor as a programmer. Your first assignment is to review and correct various code to use sub procedures and/or functions. An application needs to calculate sales tax for purchases. You decide to simplify the code by putting the sales tax calculation in a function. The returned value from the function is then added to the Subtotal, and the result is stored in the decTotal variable. Which of the following statements will call the GetSalesTax function and return a value to be used in the Total calculation?
A. decTotal = decSubtotal + GetSalesTax() B. decSubtotal + GetSalesTax(decSubtotal) C. decTotal = decSubtotal + GetSalesTax(decSubtotal) D. decTotal = decSubtotal + GetSalesTax(decSubtotal As Decimal)