Python Quiz Quiz Python Fundamental Quiz 3 Pradip Devkar October 8, 2024 “Welcome to the Python Fundamentals Quiz! Test your basic knowledge of Python programming with these 10 questions. Whether you are just starting out or brushing up on your skills, this quiz will help reinforce key Python concepts. Good luck!” Python Fundamentals Quiz 3 "Welcome to the Python Fundamentals Quiz! Test your basic knowledge of Python programming with these 10 questions. Whether you are just starting out or brushing up on your skills, this quiz will help reinforce key Python concepts. Good luck!" 1 / 10 What is the correct syntax for a list comprehension that creates a list of squares of numbers from 0 to 9? {x**2 for x in range(10)} [x**2 for x in range(9)] (x**2 for x in range(9)) [x**2 for x in range(10)] 2 / 10 What is the output of the following code?a = {1, 2, 3}b = {3, 4, 5}print(a & b) {1, 2} {3} {1, 2, 3, 4, 5} Error 3 / 10 What does the len() function return when applied to a dictionary? The number of keys None The length of the longest key The number of key-value pairs 4 / 10 Which of the following data types is not built into Python? Tuple Dictionary Array List 5 / 10 What is the output of the following code?x = [1, 2, 3, 4]print(x[1:3]) [2, 3, 4] [2, 3] [1, 2, 3] [1, 2] 6 / 10 What is the purpose of the self keyword in Python class methods? It refers to the current instance of the class None of the above It refers to the superclass It refers to the class itself 7 / 10 What will be the output of the following code?a = {1, 2, 3}a.add([4, 5])print(a) {1, 2, 3, [4, 5]} None of given options Error {1, 2, 3, 4, 5} 8 / 10 What is the output of the following code?x = [10, 20, 30]x[1:1] = [15]print(x) Error [10, 15, 30] [10, 20, 30] [10, 15, 20, 30] 9 / 10 Which of the following are immutable types in Python? (Select all that apply) Set Tuple String List 10 / 10 What will be the output of this code?my_list = ['apple', 'banana', 'cherry']print(my_list[-1]) cherry banana Error apple Your score isThe average score is 47% 0% Restart quiz Share this… Whatsapp Linkedin Facebook Twitter Gmail Related Continue Reading Previous Python Fundamental Quiz 4Next Python Fundamental Quiz 2 More Stories Natural Language Processing Quiz Quiz NLP Medium Quiz 5 Pradip Devkar November 7, 2024 Natural Language Processing Quiz Quiz NLP Medium Quiz 4 Pradip Devkar November 7, 2024 Deep Learning Quiz Quiz Deep Learning Expert Quiz 10 Pradip Devkar November 6, 2024 Leave a Reply Cancel replyYou must be logged in to post a comment.