20100338110052 20100338110052 06-08-2020 Computers and Technology contestada 1.the following code example would print the data type of x, what data type would that be? x=5print (type(x))2.The following code example would print the data type of x, what data type would that be? x="Hello World" print(type(x))3. The following code example would print the data type x, what data type would that be? x=20.5print (type(x))