Vidyalelo
Ruby Programming · Q25

Working with Dates and Times in Ruby

Programming · Ruby Programming · question 25

Q25

How do you find the number of minutes between two Time objects in Ruby?

A.
Use the minutes_between method
B.
Use the difference method with the minutes option
C.
Subtract one Time object from another and divide the result by 60 to convert to minutes
Answer
D.
Use the delta method with the minutes option

Answer: Option C

Solution

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