Page 1 of 1

Select 3 true statements about Python primitive types. 32-bit integer type (a.k.a. int32) can represent integer value fr

Posted: Sat Jul 09, 2022 11:48 am
by answerhappygod
Select 3 true statements about Python primitive types.32-bit integer type (a.k.a. int32) can represent integer value from -2^31 (-2,147,483,648) to 2^31-1 (2,147,483,647)
The int type in Python3 cannot represent a number greater than 2^31-1.A binary floating-point method is used to represent fractions in binary numbers.The decimal number 0.1 cannot be expressed without error in binary floating-point format.The float type in Python3 can represent decimal 0.1 without error.