1 ) public class MethodOver{ 2 ) public void setVar(int a, int b, float c){} 3 ) } which overload the setVar?
A.
private void setVar(int a, float c, int b){}
B.
protected void setVar(int a, int b, float c){}
C.
public int setVar(int a, float c, int b){return a;}
D.
public int setVar(int a, float c){return a;}