FAQ: Object-Oriented Programming II - A Few Requirements

This community-built FAQ covers the “A Few Requirements” exercise from the lesson “Object-Oriented Programming II”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn Ruby

FAQs on the exercise A Few Requirements

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

Hello,
How come this date module must be requested between comas, implying it’s a string?
In my opinion it should have been required like so: require Date but instead it’s required like below:

require “date”

Thanks,
Fanny

1 Like

The reason there are quotes is because modules have file names. They are not identifiers in the global namespace.

Modules

1 Like

Hello! I’m wondering why we don’t use a capitalised version of “Date” when we require the module?

1 Like

Because we loading a file, not importing a class. The file name will look like, “date.rb” or something similar.

1 Like

The notes read " Some modules, like Math , are already present in the interpreter. Others need to be explicitly brought in [.]"

Brought in from where? Additionally, since they were not explicitly user-defined modules, why were they left out of the interpreter?

Date is part of the Ruby standard library - in my case, the module is in a file in a folder within my Ruby installation folder as date.rb

Files containing modules that don’t need require to work are part of the Ruby Core. For example, Math is ready to use without require. See also Ruby Core API Vs Standard Library and this answer on Reddit for more on why.

2 Likes