If a parameter query prompts and searches for words that contain the entered characters anywhere in the field, then which of the criteria below is the correct one?

A. LIKE [Enter the first character of the last name:] & "*"
B. LIKE "*" & [Enter any character(s) to search by:] & "*"
C. [Enter start date:]
D. None of the above


Answer: B

Computer Science & Information Technology

You might also like to view...

A set of named constants that start with the value 0 for the first constant and increment by 1 for each subsequent constant can be declared as a(n) ________.

a. class b. enum c. enumeration d. None of the above.

Computer Science & Information Technology

COGNITIVE ASSESSMENT Your business is looking to rely on cloud computing services to make data available to its developers to incorporate in applications. What is the term for this?

A. Infrastructure as a Service B. Software as a Service C. Data as a Service D. Platform as a Service

Computer Science & Information Technology

____ is not a valid C statement.

A. struct {int month; int day; int year;} birth; B. struct {int month; int day; int year;} birth, current; C. struct Date {int month; int day; int year;}; D. struct {int month, int day, int year} birth;

Computer Science & Information Technology

Recursion is memory-intensive because ________.

a) it must occur numerous times before it terminates b) previous function calls are still open when the function calls itself and the arguments of these previous calls still occupy space on the call stack c) many copies of the function code are created d) it requires large data values

Computer Science & Information Technology