Vidyalelo
Ruby Programming · Q38

Working with Dates and Times in Ruby

Programming · Ruby Programming · question 38

Q38

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

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

Answer: Option D

Solution

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