Q32Single correct4 Marks29 Oct 2023
miniSum accepts three numbers as parameters and returns the sum of two least parameters. 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
```