Match List I with List II:
Choose the correct answer from the options given below:
Arrange the following in correct sequence according to the form and content of statement of Profit and Loss:
(A) Employee Benefit Expenses
(B) Tax provided
(C) Revenue from operations
(D) Purchase of stock in Trade
(E) Dividend Income
Choose the correct answer from the options given below:
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).