Respuesta :

Floating point numbers can be represented using scientific notation.

The scientific notations in 2 decimal places are 3.56E+02, 7.83E-03 and  4.32E+00

The syntax of writing floating point numbers as scientific notation in Python is: aE-b

Where:

[tex]\mathbf{1 \le a \le 10}[/tex] and n represents the count of decimal points to the left or to the right of (a)

Using the above syntax, we have the following scientific notations in 2 decimal places:

(a) 355.76 =  3.56E+02

(b) 0.007832 =7.83E-03

(c) 4.3212 = 4.32E+00

Read more about python scientific notations at:

https://brainly.com/question/11972044