The following functions numbers (int) and numbers1 (int) are a part of some class. Answer the questions given below showing the dry run/working:
public void numbers (int n)
{
if (n > 0)
{
System.out. print(n + " " ); numbers (n-2);
System.out.print(n + " ");
}
}
public String numbers1 (int n)
{
if (n < = 0) return " ";
return numbersl(n-1) + n + " ";
}