Multiple choice Which of the following is not a characteristic of Extensions in Objective-C? An Extension can be declared for any class in the source code. It cannot be declared for any class in the source code. Extensions are also known as anonymous categories. The methods and variables declared inside the extensions are not accessible to the child classes. @interface keyword is used to declare the extension. Reveal answer Fill a bubble to check yourself A Correct answer Explanation An extension cannot be declared for any class, only for the classes that have original implementation of source code.