Given the formula to calculate a monthly mortgage payment: (Exhibit) and these declarations: (Exhibit) By Singh | January 7, 2023 0 Comment Given the formula to calculate a monthly mortgage payment:and these declarations:How can you code the formula? A. m = p * (r * Math.pow(1 + r, n) / (Math.pow(1 + r, n) – 1)); B. m = p * ((r * Math.pow(1 + r, n) / (Math.pow(1 + r, n)) – 1)); C. m = p * (r * Math.pow(1 + r, n) / Math.pow(1 + r, n) – 1); D. m = p * r * Math.pow(1 + r, n) / Math.pow(1 + r, n) – 1; Correct Answer: A