A special character, such as * or ?, that can be used as a part of a search term is called a:

A) search character.
B) wildcard.
C) format marker.
D) search symbol.


B

Computer Science & Information Technology

You might also like to view...

Which of the following statements is false?

a) There are many animation capabilities in Windows 8. b) An ObjectAnimationUsingKeyFrames animation allows you to change a property of an object to a new value. c) You can specify that animations be performed over a period of time. d) Other animation types include animating Points so that you can move an object, animating transitions from one color to another over time and animating numeric values over time—this could be used to animate an object’s size changes.

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1) To instantiate and call, a template function requires special syntax. 2) The template prefix can be written template or template with the same results. 3) Templates provide an overloading of the function for every possible type that is consistent with the use in the template. 4) Suppose the swapValues template is instantiated as follows: ``` int x = 2, y =3; swapValues(x, y); // use x and y x = 4; y =5; swapValues(x, y); // use x and y ``` The compiler generates code for two copies of the swapValues template. 5)In the template prefix, template the identifier T is called a value parameter.

Computer Science & Information Technology

Which of the following is NOT true regarding normalization?

A) When you normalize a database, you will have larger tables, each representing a different thing. B) If you know the primary key of an entity in a normalized database, each of the attributes will have just one value. C) There will be no redundant data in the tables. D) Normalization is the process of minimizing duplicate data.

Computer Science & Information Technology

Windows 10 allows easy automatic updates to your computer by Microsoft.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology