The purpose of the _______ element is to describe the contents of a table.

a. summary
b. caption
c. title
d. border


b. caption

Computer Science & Information Technology

You might also like to view...

In the text, we created a random access file. When we read the data back sequentially, we discovered that in the process of creating the random-access file, the data was__________.

a. merged. b.duplicated. c. sorted. d. filtered.

Computer Science & Information Technology

What will be the output of the following program when the button is clicked?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim a, b, c, acronym As String a = "federal" b = "aviation" c = "administration" acronym = a.Substring(0, 1) & b.Substring(0, 1) & c.Substring(0, 1) Select Case acronym Case "FAA" txtBox.Text = "Federal Aviation Administration" Case "DEA" txtBox.Text = "Drug Enforcement Agency" Case Else txtBox.Text = "Unknown acronym. Sorry." End Select End Sub ``` (A) Federal Aviation Administration (B) Drug Enforcement Agency (C) Syntax error (D) Unknown acronym. Sorry.

Computer Science & Information Technology

Which of the following is an example of antispyware?

a. Spyware Blaster b. Spector Pro c. Eblaster d. FakeGINA

Computer Science & Information Technology

Details about a presentation can be found in the presentation file's _________________________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology