Write an expression that computes 12 raised to the power 4.3 and store the result in a double called result.
What will be an ideal response?
```
result = Math.pow(12, 4.3);
```
Computer Science & Information Technology
What will be an ideal response?
```
result = Math.pow(12, 4.3);
```