Python Data Type

Last Updated :
Discuss
Comments

Question 1

Which of these is not a core data type?

  • A

    Lists

  • B

    Dictionary

  • C

    Tuples

  • D

    Class

Question 2

What is the data type of variable x in the following code?

Python
x = [1, 23, hello, 1]


  • A

    List

  • B

    Dictionary

  • C

    Tuple

  • D

    Array

Question 3

Which of the following function convert a string x to a float in python?

  • A

    int(x [,base])

  • B

    long(x [,base] )

  • C

    float(x)

  • D

    str(x)

Question 4

Which Python datatype maintains the order of elements inserted?

  • A

    set

  • B

    list

  • C

    dict

  • D

    Both B and C

There are 4 questions to complete.

Take a part in the ongoing discussion