Jetjay489 Jetjay489 18-01-2024 Computers and Technology contestada In the following code, which are the actual parameters?int main(){ double a = 97.5; double b = 88.7; double result = sum( a, b );}double sum( double x, double y ){ return x + y;}