Which of the following correctly stores 45 squared in the variable x?
![Which of the following correctly stores 45 squared in the variable x class=](https://us-static.z-dn.net/files/dd5/188de3b62a7c55e0233ec29949ecfec4.png)
The option that correctly stores 45² in the variable of x is;
Option B;
x = 45
x ** 45
This is a python problem.
In python, the symbol ** simply means the number after it is an exponent of the number before the symbol.
In contrast, the symbol * in python simply means product or multiplication.
Thus, in python; a**b simply means [tex]a^{b}[/tex]
In contrast; a*b simply means a × b.
Now, let us apply that concept to our question;
We are given; x = 45
We want to store 45² in the variable of x.
This means 45² will be written as x²
However, we want to write it in python form. Thus, this will give us;
x = 45
x ** 45
Read more at; https://brainly.in/question/20737184