In order to subclass the Person class, what is one thing you must do?kotlinabstract class Person(val name: String) { abstract fun displayJob(description: String)}

🎲 Try a Random Question  |  Total Questions in Quiz: 83  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Kotlin Quiz — practice the complete quiz, review flashcards, or try a random question.

Kotlin MCQs For LinkedIn Skill Assessments.


In order to subclass the Person class, what is one thing you must do?<br>kotlin<br>abstract class Person(val name: String) {<br> abstract fun displayJob(description: String)<br>}<br>