class Function1 { int sum(int a,int b) { return a+b; } void avg(int x,int y) { int c=sum(x,y); System.out.println("Average="+(c/2)); } } Name the Formal parameters and Actual parameters. What will the avg() return when x=12 and y = 13?
Answers
Answered by
0
what a question nothing understood
Answered by
0
Answer:
int sum(int a,int b)
Explanation:
{ return a+b; }
Similar questions