Vidyalelo
Ruby Programming · Q41

Working with Dates and Times in Ruby

Programming · Ruby Programming · question 41

Q41

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

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

Answer: Option A

Solution

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