Python Quiz for Beginners. 0% 0 Oops! Time up! Python programming Python Basic Quiz This Quiz for beginners. You can enhance and check your knowledge in python after attending this quiz. Login Here. NameEmail 1 / 50 Category: Syntax & Errors int("abc") a. abc b. ValueError c. 0 d. TypeError 2 / 50 Category: Syntax & Errors print(x) a. x is printed b. SyntaxError c. 0 d. NameError 3 / 50 Category: Syntax & Errors print("Hello) a. Syntax Error b. No Error c. Value Error d. Name Error 4 / 50 Category: Syntax & Errors print(10 / 0) a. SyntaxError b. ZeroDivisionError c. infinity d. 0 5 / 50 Category: Syntax & Errors list = 10 print(list[0]) a. IndexError b. 0 c. 1 d. TypeError 6 / 50 Category: Syntax & Errors for i in range(5) print(i) a. No Error b. Type Error c. Name Error d. Syntax Error 7 / 50 Category: Syntax & Errors def fun(): print("Hi") a. Indentation Error b. Syntax Error c. No Error d. Name Error 8 / 50 Category: Syntax & Errors a = [1,2,3] print(a[5]) a. 3 b. None c. KeyError d. IndexError 9 / 50 Category: Syntax & Errors print(unknown) a. NameError b. SyntaxError c. 0 d. unknown 10 / 50 Category: Syntax & Errors if 5 > 3 print("Yes") a. No Error b. Logical Error c. Syntax Error d. Indentation Error 11 / 50 Category: Fill in the Blanks The output of print(type(10)) is __________. a. integer b. int c. number 12 / 50 Category: Fill in the Blanks The keyword used to define a function in Python is __________. a. define b. function c. def d. fun 13 / 50 Category: Fill in the Blanks __________ function returns the length of a list. a. length() b. size() c. len() d. count() 14 / 50 Category: Fill in the Blanks Python was created by __________. a. Guido van Rossum b. James Gosling c. Bjarne Stroustrup d. Dennis Ritchie 15 / 50 Category: Fill in the Blanks The multiplication operator in Python is __________. a. X b. % c. * d. x 16 / 50 Category: Fill in the Blanks The symbol used for comments in Python is __________. a. # b. <!-- --> c. /**/ d. // 17 / 50 Category: Fill in the Blanks Lists in Python are enclosed within __________ brackets. a. [] b. () c. {} 18 / 50 Category: Fill in the Blanks Python is a __________ level programming language. a. Assembly b. High c. Low d. Machine 19 / 50 Category: Fill in the Blanks The correct file extension for Python files is __________. a. .pyt b. .pt c. .python d. .py 20 / 50 Category: Fill in the Blanks Python is a __________ typed language. a. Strongly b. Statically c. Dynamically d. Weakly 21 / 50 Category: Fill in the Blanks __________ keyword is used to check a condition in Python. a. check b. for c. if d. while 22 / 50 Category: Fill in the Blanks __________ is used to take input from the user in Python. a. get() b. input() c. scan() d. read() 23 / 50 Category: Fill in the Blanks The value of True in Python is __________. a. True b. 0 c. 1 d. true 24 / 50 Category: Fill in the Blanks __________ is used to exit a loop in Python. a. break b. exit c. stop d. end 25 / 50 Category: Fill in the Blanks Python is an __________ language. a. Binary b. Compiled c. Assembled d. Interpreted 26 / 50 Category: True / False print() is used for input in Python. a. True b. False 27 / 50 Category: True / False Python code runs faster than C language. a. True b. False 28 / 50 Category: True / False Indentation is mandatory in Python. a. True b. False 29 / 50 Category: True / False Tuples are mutable data types. a. False b. True 30 / 50 Category: True / False = is a comparison operator in Python. a. True b. False 31 / 50 Category: True / False None represents absence of a value. a. False b. True 32 / 50 Category: True / False Python supports multiple inheritance. a. True b. False 33 / 50 Category: True / False Python supports object-oriented programming. a. True b. False 34 / 50 Category: True / False while loop executes at least once. a. True b. False 35 / 50 Category: True / False Python is case-sensitive. a. False b. True 36 / 50 Category: Output Based Questions print(len("Python")) a. 8 b. 7 c. 6 d. 5 37 / 50 Category: Output Based Questions print(2 ** 3) a. 6 b. 9 c. 8 d. Error 38 / 50 Category: Output Based Questions a = [1,2,3] print(len(a)) a. 1 b. 2 c. Error d. 3 39 / 50 Category: Output Based Questions print(type("10")) a. float b. int c. string 40 / 50 Category: Output Based Questions print(5 % 2) a. 1 b. 2 c. 0 d. Error 41 / 50 Category: Output Based Questions print(10 > 5) a. True b. Error c. 10 d. False 42 / 50 Category: Output Based Questions print(bool(0)) a. 0 b. True c. Error d. False 43 / 50 Category: Output Based Questions x = 10 print(x) a. Error b. x c. 0 d. 10 44 / 50 Category: Output Based Questions print(10 / 2) a. 5.0 b. Error c. 5 d. 2 45 / 50 Category: Output Based Questions x = 5 x += 3 print(x) a. 2 b. 5 c. 8 d. Error 46 / 50 Category: Output Based Questions print(5 + 3) a. 53 b. Error c. 8 d. None 47 / 50 Category: Output Based Questions print(10 == 10) a. 10 b. Error c. False d. True 48 / 50 Category: Output Based Questions print(type(3.14)) a. float b. int c. decimal 49 / 50 Category: Output Based Questions print("Hello" + "World") a. Hello+World b. HelloWorld c. Error d. Hello World 50 / 50 Category: Output Based Questions print("Python"[0]) a. y b. Error c. Python d. P Your score isThe average score is 0% 0% Restart quiz Rate the Quiz. Thank You For Rating Us! Send feedback Share this: Share on Facebook (Opens in new window) Facebook Share on X (Opens in new window) X Like this: Table of Contents ToggleLike this:Related Like Loading… Related Share post Please Share This Share this content Opens in a new window Opens in a new window Opens in a new window Opens in a new window Read more articles Previous PostLearn Python: A Comprehensive Guide for Beginners Next PostPython List Datatype Quiz Prajjwal Singh Tech Blogger || Web developer || Computer Networking Enthusiast || Microsoft SQL Database Management Expert || Software Debugger || Learned DOS OS Structure You Might Also Like MUTABLE AND IMMUTABLE TYPES IN PYTHON April 27, 2023 BAREBONES OF PYTHON PROGRAM September 20, 2022 Working with Anaconda Python August 27, 2022 Leave a ReplyCancel reply