Question 5
Statement
Procedure miniSum accepts three numbers as parameters and returns the sum of two smallest numbers.
Choose the correct code fragment to complete the procedure.
Procedure miniSum(A, B, C) Sum = 0 if(A > C and A > B){ Sum = B + C } ******************** * Fill the code * ******************** return(Sum)End miniSum