0
0
Rubyprogramming~10 mins

Upto and downto methods in Ruby - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Upto and downto methods
Start number
Check condition: current <= end (upto) or current >= end (downto)?
|Yes
Execute block with current
Update current: current + 1 (upto) or current - 1 (downto)
Back to condition check
End
Back to condition check
The methods start from a number and move up or down to another number, running code at each step until the end is reached.
Execution Sample
Ruby
1.upto(3) do |i|
  puts i
end

3.downto(1) do |i|
  puts i
end
Prints numbers from 1 to 3 using upto, then from 3 down to 1 using downto.
Execution Table
StepMethodCurrent ValueCondition CheckActionOutput
1upto11 <= 3 (true)Print 1, increment to 21
2upto22 <= 3 (true)Print 2, increment to 32
3upto33 <= 3 (true)Print 3, increment to 43
4upto44 <= 3 (false)Stop iteration
5downto33 >= 1 (true)Print 3, decrement to 23
6downto22 >= 1 (true)Print 2, decrement to 12
7downto11 >= 1 (true)Print 1, decrement to 01
8downto00 >= 1 (false)Stop iteration
💡 Iteration stops when current value goes beyond the end number (upto: current > end, downto: current < end).
Variable Tracker
VariableStartAfter 1After 2After 3After 4After 5After 6After 7Final
current (upto)12344 (stops)
current (downto)32100 (stops)
Key Moments - 2 Insights
Why does the 'upto' method stop after printing 3 even though it increments to 4?
Because the condition check at step 4 (4 <= 3) is false, so the loop stops before printing 4, as shown in execution_table row 4.
In 'downto', why is 1 printed but 0 is not?
At step 7, current is 1 and condition 1 >= 1 is true, so it prints 1. At step 8, current is 0 and 0 >= 1 is false, so it stops without printing 0, as seen in execution_table rows 7 and 8.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the current value during the third step of 'upto'?
A4
B2
C3
D1
💡 Hint
Check the 'Current Value' column for step 3 in the execution_table.
At which step does the 'downto' method stop iterating?
AStep 7
BStep 8
CStep 6
DStep 5
💡 Hint
Look at the 'Condition Check' and 'Action' columns for downto in the execution_table.
If we change '1.upto(3)' to '1.upto(4)', how many times will the block run?
A4 times
B3 times
C5 times
D2 times
💡 Hint
The block runs once for each number from start to end inclusive, see variable_tracker for current values.
Concept Snapshot
upto(end) { |i| ... } runs block from self up to end, increasing by 1 each time.
downto(end) { |i| ... } runs block from self down to end, decreasing by 1 each time.
Both include the end number.
Iteration stops when current passes the end.
Use for simple counting loops up or down.
Full Transcript
The 'upto' method starts from a number and counts up to another number, running code at each step. It checks if the current number is less than or equal to the end number, runs the block, then adds one. When the current number goes beyond the end, it stops. The 'downto' method works similarly but counts down from a number to a smaller number, subtracting one each time. Both methods include the end number in their iteration. For example, 1.upto(3) prints 1, 2, 3, then stops. 3.downto(1) prints 3, 2, 1, then stops. This visual trace shows each step, the current value, condition checks, actions, and outputs, helping beginners see exactly how these methods work.