Given a recursive method:
public static String method(int n) {
if (n == 0 || n == 1) {
return String.valueOf(n);
}
return method(n / 2) + String.valueOf(n % 2);
} Assume,
n >= 0.What does the resulting string contain after calling the method?