Word's Styles group in the HOME tab contains buttons to format a list with bullets or numbers.

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


False

Computer Science & Information Technology

You might also like to view...

When comparing “a” to “_” the correct result would be:

a) “a” is greater b) they are equal c) “_” is greater d) there is no way to compare “_” to “a”

Computer Science & Information Technology

To indicate the data type of a variable in a UML diagram, you enter __________.

a. the variable name followed by the data type b. the variable name followed by a colon and the data type c. the class name followed by the variable name followed by the data type d. the data type followed by the variable name

Computer Science & Information Technology

In the Windows operating systems, deleting a file performs which of the following actions on the data stored on the surface of the medium?

a. Nothing happens to the data at this point. It is simply moved from the original folder to a hidden folder in the Recycle Bin. b. Nothing happens to the data at this point. The allocation marker for the file is simply reset. c. A random deluge of zeroes and ones is copied over the original data. d. The entry for the file is purged from the $MFT metadata file in the file system.

Computer Science & Information Technology

The following code selects all the records from the ________ that do not have ________.

``` query = "SELECT * FROM AuctionItems " _ & "WHERE Ends = #" & Date() - 1 & "# " _ & "AND CurrentBidder IS NOT NULL " _ & "ORDER BY Display" ``` (a) current day, more than one bid. (b) past week, a null CurrentBidder field. (c) previous day, a null CurrentBidder field (d) previous day, one bid.

Computer Science & Information Technology