A rectangle has a length \(L\) and a width \(W\), where \(L > W\). If the width, \(W\), is increased by 10%, which one of the following statements is correct for all values of \(L\) and \(W\)?
Select the most appropriate option to complete the above sentence.
Perimeter increases by 10%.
Length of the diagonals increases by 10%.
Area increases by 10%.
Consider designing a linear binary classifier \( f(x) = \text{sign}(w^T x + b), x \in \mathbb{R}^2 \) on the following training data: 
Class-2: \( \left\{ \left( \begin{array}{c} 0 \\ 0 \end{array} \right) \right\} \)
Hard-margin support vector machine (SVM) formulation is solved to obtain \( w \) and \( b \). Which of the following options is/are correct?
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).