Newton's Method can be interpreted as a type of fixed point iteration of the form
$$x_{n+1}=F(x_n)$$
where
$$F(x)=x-\frac{f(x)}{f'(x)}$$
Assume we know the root $r$ such that $F(r)=r$ (i.e. $r$ the answer to part 1 of your question). According to fixed point theory, if $F$ is a contractive mapping on a closed set $[a,b]$ and $F'$ exists and is continuous, then the error $e_{n+1}$ can be expressed (with the help of mean value theorem) as
\begin{eqnarray}
e_{n+1}&=& x_{n+1}-r\\
&=& F(x_n)-F(r) \\
&=& F'(\xi_n)(x_n-r)
\end{eqnarray}
for some $\xi_n$ between $x_n$ and $r$. Thus, to ensure convergence by contractive mapping (your question 2), we require that $|F'(x)|<1$ for all $x$ in some $[a,b]$.
To prove 2nd order convergence, notice that the error term $e_{n+1}$ can also be expressed (with the help of Taylor Series) as
\begin{eqnarray}
e_{n+1}&=&x_{n+1}-r\\
&=& F(r+e_n)-F(r)\\
&=&F(r) + e_nF'(r) + \frac{1}{2!} e_n^2F''(r) + \frac{1}{3!}F'''(r)+... - F(r) \\
&=&e_nF'(r) + \frac{1}{2!} e_n^2F''(r) + \frac{1}{3!}F'''(r)+...
\end{eqnarray}
This last expression tells us that the order of convergence depends on the multiplicity of the root $r$ of $F$. If $r$ has multiplicity $q$, then all the derivatives of $F$ up to the $q-1$th order (at the root $r$) are all zero and the $q$th derivative $F^{(q)}(r)\neq0$. Hence, a root $r$ of multiplicity $q$ yields a convergence of order $q$.
In your particular case, you need to show that the root $r$ of $F$ (note the CAPITAL $F$, not lower case $f$) has multiplicity $2$. That is, you'll need to show that $F'(r)=0$ and $F''(0)\neq0$