We need to specify that a LCDMonitor class inherits from a Monitor class. The notation for doing so look like this:

A. class LCDMonitor inherits from Monitor
B. class LCDMonitor : class Monitor
C. class LCDMonitor : Monitor
D. class LCDMonitor : public Monitor


D

Computer Science & Information Technology

You might also like to view...

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

1. A while loop will always iterate at least once, even if the Boolean expression is initially false. 2. Counter variables are commonly used to hold Boolean values that control the number of times a loop iterates. 3. In most circumstances you should avoid writing loops that never-end. 4. The ++ operator is pronounced “plus plus” and the -- operator is pronounced “minus minus”. 5. Incrementing and decrementing are so commonly done in programs that C# provides the ++ and -- unary operators for just these purposes.

Computer Science & Information Technology

Which of the following statements are true?

a. Inheritance models the is-a relationship between two classes. b. A strong is-a relationship describes a direct inheritance relationship between two classes. c. A weak is-a relationship describes that a class has certain properties. d. A strong is-a relationship can be represented using class inheritance. e. A weak is-a relationship can be represented using interfaces.

Computer Science & Information Technology

The Sort dialog box allows you to sort text is all of the following ways EXCEPT:

A) by date B) by number C) alphabetically D) by time

Computer Science & Information Technology

A range is the simplest method to calculate the dispersion of a data set and can provide a rough idea of how the data set is dispersed

Indicate whether the statement is true or false

Computer Science & Information Technology