Which predicate enables you to test whether a character string value expression matches a specified character string pattern?

a. Comparison
b. BETWEEN
c. IN
d. LIKE
e. IS NULL

d. LIKE

Computer Science & Information Technology

You might also like to view...

What does the line #include do for your program?

What will be an ideal response?

Computer Science & Information Technology

Write a function template for a function named minimum. The function will have two parameters of the same type. It returns the smaller of these (either if they are equal.)

In carrying this out, give: a) a prototype (declaration) and preconditions for the function template b) a definition for this function. c) As a part of your answer, remark on the restriction of this function template to types for which operator< defined.

Computer Science & Information Technology