python quiz

Python Online Quiz

python quiz

Test your coding prowess in our Ultimate Programming Python Online Quiz with Total 12 Questions.

Whether you're a seasoned developer or just dipping your toes into the programming world, challenge yourself with a range of questions spanning languages like Python, Java, and more.

Are you ready to conquer the coding conundrums? Put on your thinking hat and dive into the quiz now!

Name
Email
1. 
How code block indicated in Python?

2. 
Which of the following concepts is not a part of Python?

3. 
Which statement can be used for Exception Handling in Python?

4. 
What will be the output of the following code snippet?


a = 3 b = 1 print(a, b) a, b = b, a print(a, b)

5. 
What will be the output of the following Program ?


def check(a):
Β  Β print("Even" if a % 2 == 0 else "Odd")
Β  Β 
check(12)

6. 
Which of the following functions converts date to corresponding time in Python?

7. 
What is the name of the operator ** in Python?

8. 
The list.index(x[, start[, end]]) is used to ___.

9. 
The following syntax is used to define a ___.


d = {
Β : ,
Β : ,
Β .
Β .
Β .
Β :
}

10. 
Which of the following is a correct syntax for panda's dataframe.

11. 
What will be the output of the following Python code?


print('*', "abcde".center(6), '*', sep='')

12. 
What will be the output of the following Python code?


x = [[0], [1]]
print((' '.join(list(map(str, x))),))