Ask Question
22 November, 03:51

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. 22 November, 05:42
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers