FAQ: Methods, Blocks, & Sorting - Parameters and Arguments

This community-built FAQ covers the “Parameters and Arguments” exercise from the lesson “Methods, Blocks, & Sorting”.

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

Learn Ruby

FAQs on the exercise Parameters and Arguments

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!

If parentheses are optional, what happens if we pass in the return value of one function into another? Will Ruby figure it out based on the number of arguments? So if we had a function f(x, y, z) and a function g(a, b), would g f x y z b run correctly assuming the return value of f is a valid value for a?

Hello, @byteblitz.

I believe the lesson states that parenthesis are usually optional. There are times when they are needed to group things together. For example:

def f x, y, z # parenthesis not used here making readability more difficult, but the code still runs
  x + y * z 
end

def g a, b #same thing here
  a - b 
end

#The first 4 options work
puts g((f(1, 2, 3)), 5) #2
puts g (f(1, 2, 3)), 5 #2
puts g f(1, 2, 3), 5 #2
puts g (f 1, 2, 3), 5 #2
puts g f 1, 2, 3, 5 #error: wrong number of arguments (given 4, expected 3)

In the last line, Ruby can’t tell that only the first 3 arguments were for function f, and the last was the second argument for function g.

2 Likes

I kept getting

512
12

in the output. It should just be 512. After resetting the exercise, the 12 disappeared.