What is wrong with the following line of code?

```

This is a test.


```

a) Nothing
b) There is no attribute named SIZE for the element FONT
c) The value 5 must not be placed within quotes
d) The value 5 must be placed within double quotes


a) Nothing

Computer Science & Information Technology

You might also like to view...

Write the code to declare a two dimension array of integers with 10 rows and 20 columns.

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

Computer Science & Information Technology

Here is a small program. Which of the statements about the variables is correct?

``` #include const double NUM = 2.9345358; double num = 3; double numTimes(int x); int main( ) { using namespace std; int value; cout << “Enter a value, I’ll multiply it by “ << NUM << endl; cin >> value; cout << “You entered “ << value << “ NUM times this is “ << numTimes(value) << endl; return 0; } double numTimes(int x) { double d; d = NUM * x; return d; } ``` a) NUM is a global variable. b) num is a global constant. c) value is local variable in the main function d) d is a local variable in the numTimes function.

Computer Science & Information Technology

A ________ in OpenOffice Writer includes formatting, such as font, font size, font emphasis, and paragraph indents

A) style B) record C) hanging indent D) first line indent

Computer Science & Information Technology

Solve the following system using the substitution method or the linear combination method.

A.
B.
C.
D. infinite number of solutions
E. no solution

Computer Science & Information Technology