All of these are correct and what Would work best is a % Complete_ at what this would do is show a 0-100 completion rate
Answer:
int half(int x){
int a=x/2;
return a;
}
Explanation:
function <em>half(x)</em> which has return type <em>integer</em> and accept an <em>integer </em>type parameter <em>'x'</em> and return the an <em>integer </em>value in variable <em>'a' </em>which is closest to <em>half</em> that of the parameter '<em>x'</em>.