I'm pretty sure you are expected to use printed tables of the standard normal CDF
to get a numerical solution to this problem. That involves transforming the IQ scale with $X \sim \mathsf{Norm}(\mu = 100, \sigma=15).$ To a standard normal scale with $Z \sim \mathsf{Norm}(0, 1).$ Essentially $Z$ is the number of standard deviations ($\sigma=15$) above or below the IQ mean ($\mu = 100$) that a particular IQ score falls (as in the Comment of JMoravitz).
Here is a sketch of the normal curve that describes IQ scores. The total area
under the curve is $1 = 100\%.$ The probability you want is represented by
area under the curve and to the right of the vertical red line. Roughly, it
looks to be about 5%.

Here is how to begin a formal computation:
$$P(X > 125) = P\left(\frac{S - \mu}{\sigma} > \frac{125 - 100}{15} = 1.67\right)
= P(Z > 1.67).$$
To use printed standard normal tables found in most elementary statistics
texts, you will have to read the details because the formats of these tables
vary. (Maybe you will have to find the area under the standard normal curve
between 0 and 1.67 from that tables, and then subtract from 0.5.)
This problem can be solved directly (without standardization or rounding) using
software. Using R statistical software, the computation is shown below.
1 - pnorm(125, 100, 15)
## 0.04779035
You will likely not get exactly this result from printed normal tables, because
it is necessary to round 1.6666... to 1.67 in order to use most tables.