Vidyalelo
Ruby Programming · Q111

Control Structures in Ruby

Programming · Ruby Programming · question 111

Q111

What is the output of the given code? for num in 1...5 puts num end

A.
1 2 3 4 5
B.
1 2 3 4
Answer
C.
2 3 4 5
D.
None of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board