Ask Question
17 March, 06:37

1. Which of the following class definitions defines a legal abstract class? a. class A { abstract void unfinished () { } }b. class A { abstract void unfinished (); }c. abstract class A { abstract void unfinished (); }d. public class abstract A { abstract void unfinished (); }

+3
Answers (1)
  1. 17 March, 09:18
    0
    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.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “1. Which of the following class definitions defines a legal abstract class? a. class A { abstract void unfinished () { } }b. class A { ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers