Don’t submit this part of the test until you have completed…

Don’t submit this part of the test until you have completed the part in Carnap. With Honorlock running, go to the tab where Carnap.io is open and take part 2 of the test. The password is: door Once you have finished the Carnap part, come back here and click Submit Quiz. 

What will be the output of this program when it is executed?…

What will be the output of this program when it is executed? #include double add(double x, double y) { return x + y; }double subtract(double x, double y) { return x – y; }int main() {   double (operations)(double, double) = {add, subtract};   double result1 = operations(10.5, 5);   double result2 = operations(10.5, 5);    std::cout