Q56Single correct4 Marks10 Jul 2022
`miniSum` accepts three distinct 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
```