Which of the following statements is true regarding bulleted lists?

A) They don't automatically use an indent.
B) You cannot change the symbol used for a bullet.
C) Line spacing may vary based upon paragraph formatting.
D) You must specify the spacing between lines in a bulleted list.

C

Computer Science & Information Technology

You might also like to view...

Problems: Correcting Logic and Code ErrorsThe following sample of code contains errors. Rewrite the incorrect statements to correct all errors.

Private Sub btnDisplay_Click(sender As Object, e As EventArgs) Handles btnDisplay.Click    ' Displays all records or a record for a specific year     If radAll.Checked Then         WinnersTableAdapter(OscarsDataSet.Winners)     Or         If txtYear.Text.Trim = String.Empty Then            MessageBox.Show("Please enter the year.", "Oscar Winners",                             MessageBoxButtons.OK, MessageBoxInformation)         Else            Dim intYear As Integer            Integer.TryParse(txtYear.Text.Trim, intYear)            WinnersTableAdapter.FillByYear(OscarsDataSet.Winners, intYear)         End If End Sub What will be an ideal response?

Computer Science & Information Technology

Andy is writing an article and wants to verify a few facts. Which of the following websites is designed to provide answers to factual questions

A. ?Blinkx B. ?Ask a Librarian C. ?Wolfram Alpha D. ?Glean Comparison Search

Computer Science & Information Technology