Rotating the parabola even by the smallest angle will cause it to no longer be well defined.
Intuitively, you can prove this for yourself by considering the fact that the derivative of a parabola is unbounded. This means that the parabola becomes arbitrarily "steep" for large (or small) values of $x$, i.e. its angle being closer and closer to $90^\circ$, and rotating it by even a little will tip it over the $90$ degrees.
For a formal proof, first, we need to explain exactly what a rotation of a parabola is. In general, a rotation in $\mathbb R^2$ is multiplication with a rotation matrix, which has, for a rotation by $\phi$, the form $$\begin{bmatrix}\cos\phi&-\sin\phi\\\sin\phi&\cos\phi\end{bmatrix}$$
In other words, if we start with a parabola $P= \{(x,y)|x\in\mathbb R\land y=x^2\}$, then the parabola, rotated by an angle of $\phi$, is
$$\begin{align}P_\phi &= \left.\left\{\begin{bmatrix}\cos\phi&-\sin\phi\\\sin\phi&\cos\phi\end{bmatrix}\cdot\begin{bmatrix}x\\y\end{bmatrix}\right| x\in\mathbb R, y=x^2\right\}\\
&=\{(x\cos\phi - y\sin\phi, x\sin\phi + y\cos\phi)|x\in\mathbb R, y=x^2\}\\
&= \{(x\cos\phi-x^2\sin\phi, x\sin\phi + x^2\cos\phi)| x\in\mathbb R\}\end{align}.$$
The question now is which values of $\phi$ construct a well defined parabola $P_\phi$, where by "well defined", we mean "it is a graph of a function", i.e., for each $\overline x\in\mathbb R$, there exists exactly one value $\overline y$ such that $(\overline x,\overline y)\in P_\phi$.
Clearly, if $\phi = 0$, we have $P_0=\{(x, x^2)|x\in\mathbb R\}$ which is well defined, because for every $\overline x$, the value $\overline y=\overline x^2$ is the unique value required for $(\overline x,\overline y)$ to be in $P_0$.
Also, if $\phi=\pi$, then $P_\pi = \{(-x, -x^2)|x\in\mathbb R\}$ is also well defined because if $(\overline x,\overline y)\in P_\pi$, then $\overline y=-\overline x^2$.
Now, observe what happens if $\phi\notin\{0,\pi\}$. For now, let's assume that $\phi\in(0,\frac\pi2)$. In that case, $\sin\phi\neq 0$, which means that the equation $$x\cos\phi-x^2\sin\phi=0$$ has two solutions. One solution is $x=0$, the other is $x=\frac{\cos\phi}{\sin\phi} = \cot\phi$.
This means that, if we take $\overline x=0$, there are two values of $x$ that can create a point $(\overline x, \overline y)$, and we have two possible values of $\overline y$ as well. One is $\overline y_1 = 0$, the other is $$\overline y_2 = x\sin\phi + x^2\cos\phi = \frac{\cos\phi}{\sin\phi} \sin\phi + \left(\frac{\cos\phi}{\sin\phi}\right)^2\cos\phi =\cos\phi + \frac{\cos^3\phi}{\sin\phi}$$
and, because $\phi\in(0,\frac\pi2)$, we know that $\overline y_2>0$, which means $\overline y_2\neq \overline y_1$, and therefore, $P_\phi$ is not a graph of a function.
Note that the options when $\phi$ is in one of the other three quadrants can be solved similarly as the one above, or, you can use symmetry to translate all of the other three cases to the one already solved above.
Will it not be the case that as the parabola is rotated beyond the bounds of one function, it starts to describe another?
– Robbie Goodwin Jul 15 '22 at 19:17