What are abstract methods? Describe the circumstances in which an abstract method would be appropriate.

What will be an ideal response?

An abstract method is one with keyword abstract in its declaration. Abstract methods
do not provide implementations. Each concrete derived class of an abstract base
class must provide concrete implementations of the base class’s abstract methods. An
abstract method is appropriate when it does not make sense to provide an implementation
for a method in a base class (i.e., some additional derived-class-specific knowledge
is required to implement the method in a meaningful manner).

Computer Science & Information Technology

You might also like to view...

You can import data from an Excel workbook into Access by copying the data from an open worksheet and pasting it into a new table, appending a copy of records to an existing table, or linking to the Excel worksheet

Indicate whether the statement is true or false

Computer Science & Information Technology

Which CSS property configures the capitalization of text?

a. font-type b. text-transform c. text-decoration d. font-weight

Computer Science & Information Technology