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^9View AnswerAnswer: 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 #...