πŸ“Š R Programming
Q. What will be the output of the following R code?
> datestring <- c("January 10, 2012 10:40", "December 9, 2011 9:10")
> x <- strptime(datestring, "%B %d, %Y %H:%M")
> x
  • (A) "2012-01-10 10:40:00 EST" "2011-12-09 09:10:00 EST"
  • (B) "2012-01-10 10:40:00 IST" "2011-12-09 09:10:00 IST"
  • (C) "2012-01-10 10:40:00 GMT" "2011-12-09 09:10:00 GMT"
  • (D) Error
πŸ’¬ Discuss
βœ… Correct Answer: (A) "2012-01-10 10:40:00 EST" "2011-12-09 09:10:00 EST"

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
173
Total Visits
πŸ“½οΈ
2 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
89%
Success Rate