Of the three, Statements 1 and 2 are TRUE, while Statement 3 is FALSE.
Statement 1: The union of two recursive languages is recursive. (TRUE)
Proof:
Let $L_1$ and $L_2$ be two recursive languages. By definition, a language is recursive if and only if there exists a Total Turing Machine (a Decider) that halts for every input, outputting Accept if the string is in the language and Reject if it is not.
Let $M_1$ be the decider for $L_1$, and $M_2$ be the decider for $L_2$. We can construct a new Turing Machine $M$ to decide the union language $L_1 \cup L_2$ as follows:
On input string w:
1. Run M1 on input w.
2. If M1 accepts, ACCEPT.
3. If M1 rejects, run M2 on input w.
4. If M2 accepts, ACCEPT.
5. If M2 rejects, REJECT.
Now for the other two options,
(2) is classois non regular language can be proved by pumping lemma
(3) is false take the example of simple non regular language a^n b^n | n>0 here the individual elements like ab, aabb, aaabbb etc are regular languages but union of them is not considered regular as the above language is CFL