What is the output of the following code fragment? (9)
int num1 = 3;
int num2 = 5;
cout < num1=””>< “=”” “=””>< num2=””><>
if (num1 + num2 > 7)
int num2 = 12;
int num3;
num3 = num2 – num1;
num1 = num2 * num3;
num2 = num3 / num1;
cout < num1=””>< “=”” “=””>< num2=””>< endl;=””>
cout < num1=””>< “=”” “=””>< num2=””><>
What is the signature of a function? (13)