To use the code from module Zoo you have to include the statement
require zoo_file To avoid prefixing Animal methods with "Zoo::", the statement "include Zoo" should be located anywhere in the code after the statement "require zoo_file" and before methods from Animal class are used Ruby code can be grouped into modules
The statements A, D and E are correct. Ruby code can be grouped in the module. To use classes defined in the module, the statement require module_file_name has to be present. To allow using the class methods without ModuleName::, the statement include ModuleName has to be included in the code after the statement require module_file and before any methods are used.