Respuesta :
Answer:(c) abstract class A { abstract void unfinished(); }
Explanation:
A legal abstract class must have the keyword abstract before the class and an abstract class has abstract functions with the keyword abstract written and a void as the return type.
The syntax for class definitions which defines a legal abstract class is: a. class A { abstract void unfinished() { } }.
What is a class?
A class can be defined as a user-defined blueprint (prototype) or template that is typically used by programmers to create objects and define the data types, categories, and methods that should be associated with these objects.
In object-oriented programming (OOP) language, a class that implements an interface would also implement all of that interface's method declarations.
In conclusion, an abstract class can be represented by using this syntax for class definitions:
class A { abstract void unfinished() { } }.
Read more on class here: brainly.com/question/20264183