Multiple choice technology programming languages

select the correct options for - how are class keywords handled in multiple inheritance ?

  1. keywords are not inherted

  2. keywords from first superclass are inherited

  3. keywords from last superclass are inherited

  4. keywords from all superclasses are inherited

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Cache ObjectScript multiple inheritance, class keywords are inherited only from the first superclass in the inheritance list. Keywords from subsequent superclasses are not inherited. This prevents conflicts when multiple superclasses define conflicting keywords. The inheritance is determined by the order of superclasses in the class definition.