You have to compute as many digits as possible of $\sqrt{2}$ with a pen and a paper (an eraser if you're lucky...) in 5 minutes.
What will you do? What is your justification for doing it?
The question background is algorithm efficiency and ease to perform associated computations manually.
I would go with the following approach: for first, estimate how many digit I am able to get from the integer division between two large integer numbers in about three minutes. I am not so fast, so I estimate to be able to divide two $16$-digits numbers. Then I recall that $3+2\sqrt{2}$ is a unit in $\mathbb{Z}[\sqrt{2}]$ and compute $(3+2\sqrt{2})^{2^{m}}$ through repeat squaring:
$$ (3,2)\to(17,12)\to(577,408)\to (665857,470832)\to (886731088897,627013566048) $$ by mapping $(a,b)$, that represents $a+b\sqrt{2}$, into $((a+b)(a+2b)-3ab,2ab)$. Numbers have grown big, so I stop before I get something I am not able to handle. I have computed a convergent of the continued fraction of $\sqrt{2}$, so I know in advance that: $$\left|\sqrt{2}-\frac{886731088897}{627013566048}\right|\leq\frac{1}{627013566048^2}.$$ Then I divide $886731088897$ by $627013566048$ and get: $$ \sqrt{2} = 1.414213562373095\ldots .$$