Which of the following is a serif font?

A. Arial
B. Helvetica
C. Georgia
D. All of the above


Answer: C

Computer Science & Information Technology

You might also like to view...

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

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim word1, word2, word3 As String word1 = "First" word2 = "Second" word3 = "Third" Myproc(word1, word2, word3) End Sub Sub Myproc(var3 As String, var2 As String, var1 As String) txtBox.Text = var1 & var2 & var3 End Sub ``` (A) FirstSecondThird (B) ThirdSecondFirst (C) SecondThirdFirst (D) No output

Computer Science & Information Technology

______________________________ is the most basic script used to develop Web pages and uses a set of markup tags, such as , to define the structure of Web pages.

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

Computer Science & Information Technology

All of the following are examples of uses of safety-critical software EXCEPT the software associated with ____.

A. the braking system of automobiles B. control processes within a nuclear power plant C. patient monitoring software in an intensive care unit D. timekeeping at a local elementary school

Computer Science & Information Technology

A function returning a value must specify, in its header line, the data type of the value that will be returned.

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

Computer Science & Information Technology