Question: 21
(Choose 1 answer)
Consider the following function:
void fun(int n)
{if (n <= 0)
System.out.println("Hello");
else
{for(int i=0; i<n; i++)
}
System.out.print("$");
System.out.println();
fun(n-2);
What is the output when the statement fun(5); is run?
A. Hello
$$$$$
$$$
$
B. $$$$$
$$$
$
Hello
C. $$$$
$$
$
Hello
D. $
$$$
$$$$$
Hello