Pertanyaan
1 Dari pelajaran Alice Anda , pewarisan berarti superclass mewarisi sifat-sifatnya dari subclass TRUE atau FALSE? Mark for Review TRUE FALSE (1) Points 2 . Abstraksi prosedural mungkin perlu dilaksanakan jika suatu Alice perlu melakukan tindakan, tetapi tidak ada prosedur yang diwariskan yang menyelesaikan tindakan itu TRUE atau FALSE? FALSE (1)Points 3. Di Alice , saat prosedur baru dideklarasikan,semua subclass dari superclass akan mewarisi prosedur. TRUE atau FALSE? (1)Points TRUE FALSE Mark for Review Mark for Rever
Solusi
Jawaban
1. FALSE 2. TRUE 3. TRUE
Penjelasan
1. In object-oriented programming, it is the subclass that inherits properties from the superclass, not the other way around. Therefore, the statement is false.2. Abstract procedural abstraction in Alice may need to be implemented if an Alice needs to perform an action, but there is no inherited procedure that completes the action. This statement is true because it reflects the concept of abstract methods in programming, where a method in a superclass is declared but not implemented, and it is expected to be implemented in the subclass.3. In Alice, when a new procedure is declared, all subclasses of the superclass will inherit the procedure. This statement is true because in object-oriented programming, a procedure (or method) declared in a superclass is indeed inherited by all its subclasses unless it is overridden.