Weight of a person can be expressed as a function of their age. This function usually varies from person to person. Suppose this function is identical for two brothers and is monotonically increasing until the age of 50 years, after which it monotonically decreases. Let \( a_1 \) and \( a_2 \) (in years) denote the ages of the brothers, where \( a_1 < a_2 \).
Which one of the following statements is correct about their ages on the day they attain the same weight?
Weight of a person can be expressed as a function of their age. The function usually varies from person to person. Suppose this function is identical for two brothers, and it monotonically increases till the age of 50 years and then it monotonically decreases. Let \( a_1 \) and \( a_2 \) (in years) denote the ages of the brothers and \( a_1<a_2 \). Which one of the following statements is correct about their age on the day when they attain the same weight?
Consider the following Python code snippet.
def f(a, b):
if (a == 0):
return b
if (a % 2 == 1):
return 2 * f((a - 1) / 2, b)
return b + f(a - 1, b)
print(f(15, 10))
The value printed by the code snippet is 160 (Answer in integer).
Consider the following tables, Loan and Borrower, of a bank.

Query: \[ \pi_{\text{branchname}, \text{customername}} (\text{Loan} \bowtie \text{Borrower}) \div \pi_{\text{branchname}}(\text{Loan}) \] where \( \bowtie \) denotes natural join. The number of tuples returned by the above relational algebra query is (Answer in integer).