Which of the following statements is true about categories in iOS:
A category is a feature of the Objective-C language that enables users to add methods (interface and implementation) to a class without having to make a subclass.
The methods in the category become a part of the class type and are inherited by all the subclasses.
There is no runtime difference within the scope of the program between the original methods of the class and the methods added by the category.