Use the Newton-Raphson Method to find the root of the function f(x) = 7sin(x)e^(-x) - 1. Start with the point x0 = 0.37 to compute the next four iterations for the root. Which of the following options correctly describes the steps to find the root using the Newton-Raphson Method?
A. Start with x0 = 0.37 and compute f(x0), f'(x0)
B. Compute x1 = x0 - f(x0)/f'(x0)
C. Compute f(x1), f'(x1)
D. Repeat steps B and C four more times to find the next four iterations for the root.