$$\frac{n+1}{n} - 1 = \frac{1}{n} $$
so the first one is incorrect since $\displaystyle{\frac{1}{n}}$ is not a $o \left( \displaystyle{\frac{1}{n}}\right)$.
2.$$\log(n+1) -\log(n) = \log \left( 1 + \frac{1}{n} \right) \sim \frac{1}{n}$$
so the second one is incorrect since $\displaystyle{\frac{1}{n}}$ is not a $o \left( \displaystyle{\frac{1}{n}}\right)$.
- $$n\log(n)-n\log(\log(n))-n\log(n) = n\log(\log(n))$$
which is not a $o(n)$, since $\displaystyle{\frac{n\log(\log(n))}{n} = \log(\log(n)) \rightarrow +\infty}$. So the third one is incorrect.
- Let $u_n = o(n)$, and $v_n = o \left( \displaystyle{\frac{1}{n}}\right)$. Then
$$u_n v_n = \frac{u_n}{n} \times nv_n \longrightarrow 0 \times 0 = 0$$
so $u_n v_n = o(1)$.
The two other parts can be proved the exact same way. So option 4. is correct.