Computer Science, asked by kavyarupa1013, 1 day ago

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 blackdragon101110
0

what a question nothing understood

Answered by mistripinku82
0

Answer:

int sum(int a,int b)

Explanation:

{         return a+b;     }

Similar questions