The value thirty point eleven times ten raised to the power of nine should be written as:

The value thirty point eleven times ten raised to the power of nine should be written as:
A . 30.11E9
B. 30E11.9
C. 30.11E9.0
D. 30.11*10^9

Answer: A

Explanation:

Topic: scientific notation

Try it yourself:

print(30.11E9) # 30110000000.0

# print(30E11.9) # SyntaxError: invalid syntax

# print(30.11E9.0) # SyntaxError: invalid syntax

# print(30.11*10^9) # TypeError: unsupported operand …

print(30.11 * 10 ** 9) # 30110000000.0

You could replace the E by * 10 **

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments