Q30.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
```
Save
Check
Details
Q30
25 Feb 2024
Q30.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
```