Question 5
Procedure miniSum accepts three numbers as parameters and returns the sum of two smallest numbers.
Choose the correct code fragment to complete the procedure.
1 Procedure miniSum(A, B, C)2 Sum = 03 ********************4 * Fill the code *5 ********************6 else{7 if(B > C and B > A){8 Sum = A + C9 }10 else{11 Sum = A + B12 }13 }14 return(Sum)15 End miniSum