Python Fundamental Quiz 1

Share with others

Enter details and click on Next

Name
Email
School Name
Q1. Which of the following is not in Python Character Set.

Q2. Which of the following is not the mode of interacting with python?

Q3. Python supports dynamic typing.

Q4. What will be the data type of the following variable?

A = '101'

Q5. Write the output of the following:

print(range(0,8,2))

Q6. Write the output of the following code :

print(list(range(0,8,2)))

Q7. Smallest element of of python coding is called ______

Q8. Which of the following is not a token?

Q9. Write the output of the following code:

x=2
x=5
x=x+x
print(x)

Q10. Write the output of the following code :

x=2
y=3
x+y+5
print(x+y)


Share with others

Leave a Reply

error: Content is protected !!