Computer Science, asked by shaheenah08, 8 months ago

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 AnindaBasu
3

Answer:

output of b will be 12 only

Similar questions