Consider the following Java methods.
int f(int x) {
return x*2 - 1;
}
int h() {
int a = 3;
int b = f(a) + f(4);
return b;
}
What is the return value of the call h()?
Answers
Answered by
3
Answer:
output of b will be 12 only
Similar questions