int main() {
f1();
f2(2);
f3();
return(0);
}
int f1() {
f1();
return(1);
}
int f2(int X) {
f3();
if (X==1)
return f1();
else
return (X * f2(X-1));
}
int f3() {
return(5);
}
Which one of the following options represents the activation tree corresponding to the main function?

The output of a 2-input multiplexer is connected back to one of its inputs as shown in the figure. Match the functional equivalence of this circuit to one of the following options. 