Q. What is the output of the following R code: x <- 5; while (x > 0) { print(x); x <- x - 2 } (A) 5, 3, 1 (B) 5, 4, 3, 2, 1 (C) 5, 2, 1 (D) 5, 3, 2, 1 ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) 5, 4, 3, 2, 1