Vidyalelo
Ruby Programming · Q21

Working with Dates and Times in Ruby

Programming · Ruby Programming · question 21

Q21

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

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

Answer: Option C

Solution

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