Which of the following is not supported in objective C
-
Encaplulation
-
Polymorphism
-
Multiple Inheritence
-
Method overriding
C
Correct answer
Explanation
Objective-C supports encapsulation (through @private/@public), polymorphism (through method overriding and dynamic typing), and method overriding. However, Objective-C does NOT support multiple inheritance - classes can only inherit from one superclass. Protocols provide a similar capability without true multiple inheritance.