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…

Given: and omitting the throws FooException clause results in a compilation error. Which statement is true about FooException? A. FooException is a subclass of RuntimeError. B. FooException is unchecked. C. The body of foo can only throw FooException. D. The…

Given: What is the output? A. Hello world! Bonjour le monde! B. Hello world! Hello world! C. Bonjour le monde! Hello world! D. Bonjour le monde! Bonjour le monde!