You are creating an IIF function. If the input in the Net Sales field is greater than or equal to 60, then the custom field will read "Pass." If Net Sales are less than 40, the custom field will read "Fail." What is the function that will be entered into the field name?
A) If([Net Sales]>=.60, "Pass", "Fail") B) If([Net Sales] >=60, Pass, Fail)
C) IIf(Net Sales >=60, Pass, Fail) D) IIf([Net Sales] >=60, "Pass", "Fail")
D
Computer Science & Information Technology
You might also like to view...
You are developing a complex PL/SQL routine. Which of the following control structures in PL/SQL can be used for unconditional branching to a particular area of the code block?
A. goto B. if true then C. loop D. if-then-else
Computer Science & Information Technology
____ are built-in, predefined methods that are part of each Alice object.
A. Primitive methods B. Constructors C. Instance methods D. User-defined methods
Computer Science & Information Technology