This quiz works best with JavaScript enabled. Home > Class 12 > Class 12 Computer Science Chapter 2 Advanced Python Programming – Quiz 2 🏠 Homepage 📘 Download PDF Books 📕 Premium PDF Books Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 2 (25 MCQs) Quiz Instructions Select an option to see the correct answer instantly. 1. Data Frame contains? A) Data of same Types. B) Data of Different Types. C) All the above. D) None of the above. Show Answer Correct Answer: A) Data of same Types. 2. Which of the follwoing looping statement(s) is/are invalid in Python A) For. B) For-else. C) While. D) While-else. E) Do-while. Show Answer Correct Answer: E) Do-while. 3. What is the difference between '==' and 'is'? A) The '==' operator checks for value equality, while 'is' checks for identity. B) Both '==' and 'is' check for value equality. C) '==' checks for identity, while 'is' checks for value equality. D) '==' is used for comparing strings, while 'is' is used for comparing numbers. Show Answer Correct Answer: A) The '==' operator checks for value equality, while 'is' checks for identity. 4. How do you define a function that takes two parameters, 'fname' and 'lname'? A) Function my function(fname, lname). B) My function(fname, lname). C) Def my function(fname, lname). D) Def my function:fname, lname. Show Answer Correct Answer: C) Def my function(fname, lname). 5. In Python, what does the 'return' statement do in a function? A) Exits the function. B) Deletes the function. C) Calls another function. D) Returns a value. Show Answer Correct Answer: D) Returns a value. 6. S1 = pd.series([11, 12, 13, 14])s2 = pd.series([11, 12, 13, 14], index=[1, 2, 3, 4])print(s1+s2) gives? A) 0 221 242 263 28. B) 0 111 122 133 140 111 122 133 14. C) Error. D) None of the above. Show Answer Correct Answer: C) Error. 7. What does 'len("hello")' return? A) Hello. B) 5. C) Hello!. D) 4. Show Answer Correct Answer: B) 5. 8. Which of the following is the output of the below Python code?var1 = lambda var:var * 2ret = lambda var:var * 3result = 2result = var1(result)result = ret(result)result = var1(result)print(result) A) 24. B) 12. C) 7. D) 36. E) 48. Show Answer Correct Answer: A) 24. 9. Which collection is ordered, changeable, and allows duplicate members? A) LIST. B) DICTIONARY. C) SET. D) TUPLE. Show Answer Correct Answer: A) LIST. 10. How do you display output in Python using the print() function? A) Print[ "values" ]. B) Print= data. C) Call the print() function followed by the content to display within parentheses. D) Let values be printed. Show Answer Correct Answer: C) Call the print() function followed by the content to display within parentheses. 11. Why is it important to follow proper naming conventions for variables and functions in Python? A) Naming variables and functions randomly improves code quality. B) Proper naming conventions lead to slower code execution. C) Following naming conventions is not important in Python. D) It is important to follow proper naming conventions for variables and functions in Python to ensure code readability, maintainability, and adherence to PEP 8 guidelines. Show Answer Correct Answer: D) It is important to follow proper naming conventions for variables and functions in Python to ensure code readability, maintainability, and adherence to PEP 8 guidelines. 12. What is the primary use of the print command in Python? A) To accept user input. B) To display output to the console. C) To compile the code. D) To create a graphical user interface. Show Answer Correct Answer: B) To display output to the console. 13. What happens to the text entered by the user when using the input() function in Python? A) It is compiled into bytecode. B) It is displayed as output. C) It is returned as a string. D) It is ignored by the program. Show Answer Correct Answer: C) It is returned as a string. 14. Patients visit hospital everyday. You want to count for the "new patients" for each day. Which one is not necessary? A) Set. B) While loop. C) For loop. D) Set difference. Show Answer Correct Answer: B) While loop. 15. Which of the following is the output of the instructions given below?mylist=[1, 5, 9, int('0')]print(sum(mylist)) A) 16. B) 5. C) 1. D) 15. Show Answer Correct Answer: D) 15. 16. Find the output of the given Python program?print(list("abcd" .split(" ))) A) ['a', '', 'b', '', 'c', '*', 'd']. B) ['a', 'b', 'c', 'd']. C) ['abcd']. D) ['abc*d']. Show Answer Correct Answer: B) ['a', 'b', 'c', 'd']. 17. What is the purpose of the 'else' statement in Python conditional statements? A) To repeat the 'if' condition. B) To execute a block of code when the condition in the 'if' statement is false. C) To skip the 'if' condition. D) To define a new condition. Show Answer Correct Answer: B) To execute a block of code when the condition in the 'if' statement is false. 18. Method used to bring data from a csv file into a DataFrame A) Readcsv(). B) Read table(). C) Read csv(). D) Read-csv(). Show Answer Correct Answer: C) Read csv(). 19. Which device is required for the Internet connection? A) Repeater. B) Modem. C) CD Drive. D) NIC Card. Show Answer Correct Answer: B) Modem. 20. What is the output of the following Python code snippet? print(5 + 3 * 2) A) 16. B) 11. C) 10. D) 13. Show Answer Correct Answer: B) 11. 21. What will be the output of the following Python code snippet?not(10<20) and not(10>30) A) True. B) False. C) Error. D) No output. Show Answer Correct Answer: B) False. 22. The instructor wants to know the age of the persons with rank3. Help her to identify the correct set of statement/s from the given options: A) Print(df.loc['rank3']). B) Print(df.iloc['rank3']). C) Print(df.loc['rank3']). D) Print(df.loc('rank3')). Show Answer Correct Answer: A) Print(df.loc['rank3']). 23. Which among these are the special operators in python A) Logical Operator. B) Bitwise operator. C) Membership operator. D) Relational operator. Show Answer Correct Answer: C) Membership operator. 24. Select the reserved keyword in python- A) Else. B) Raise. C) Import. D) All of them. Show Answer Correct Answer: D) All of them. 25. How do you create a for loop in Python? A) For item from my list:. B) For item in my list()\{\}. C) For item in my list:. D) For i in range(my list):. Show Answer Correct Answer: C) For item in my list:. ← PreviousNext →Related QuizzesClass 12 Computer Science Chapter 2 Advanced Python Programming Quiz 1Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 3Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 4Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 5Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 6Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 7Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 8Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 9Class 12 Computer Science Chapter 2 Advanced Python Programming Quiz 10Class 12 Accountancy Chapter 1 Accounting For Partnership Firms Fundamentals QuizClass 12 Accountancy Chapter 2 Accounting For Partnership Firms Admission Of A Partner QuizClass 12 Accountancy Chapter 3 Accounting For Partnership Firms Retirement Death Of A Partner QuizClass 12 Accountancy Chapter 4 Accounting For Companies Issue Of Shares QuizClass 12 Accountancy Chapter 5 Accounting For Companies Issue Of Debentures QuizClass 12 Accountancy Chapter 7 Financial Statements Of Companies QuizClass 12 Accountancy Chapter 8 Analysis Of Financial Statements QuizClass 12 Accountancy Chapter 9 Computerised Accounting System QuizClass 12 Biology Chapter 1 Reproduction In Organisms QuizClass 12 Biology Chapter 10 Microbes In Human Welfare QuizClass 12 Biology Chapter 11 Biotechnology Principles And Processes QuizClass 12 Biology Chapter 12 Biotechnology And Its Applications QuizClass 12 Biology Chapter 13 Organisms And Populations QuizClass 12 Biology Chapter 14 Ecosystem QuizClass 12 Biology Chapter 15 Biodiversity And Conservation QuizClass 12 Biology Chapter 16 Environmental Issues QuizClass 12 Biology Chapter 2 Sexual Reproduction In Flowering Plants QuizClass 12 Biology Chapter 3 Human Reproduction QuizClass 12 Biology Chapter 4 Reproductive Health QuizClass 12 Biology Chapter 5 Principles Of Inheritance And Variation QuizClass 12 Biology Chapter 6 Molecular Basis Of Inheritance QuizClass 12 Biology Chapter 7 Evolution QuizClass 12 Biology Chapter 8 Human Health And Disease QuizClass 12 Biology Chapter 9 Strategies For Enhancement In Food Production QuizClass 12 Business Studies Chapter 1 Nature And Significance Of Management QuizClass 12 Business Studies Chapter 10 Financial Markets QuizClass 12 Business Studies Chapter 11 Marketing Management QuizClass 12 Business Studies Chapter 12 Consumer Protection QuizClass 12 Business Studies Chapter 2 Principles Of Management QuizClass 12 Business Studies Chapter 3 Business Environment QuizClass 12 Business Studies Chapter 4 Planning QuizClass 12 Business Studies Chapter 5 Organising QuizClass 12 Business Studies Chapter 6 Staffing QuizClass 12 Business Studies Chapter 7 Directing QuizClass 12 Business Studies Chapter 8 Controlling QuizClass 12 Business Studies Chapter 9 Financial Management QuizClass 12 Chemistry (Part I) Chapter 1 Solid State QuizClass 12 Chemistry (Part I) Chapter 2 Solutions QuizClass 12 Chemistry (Part I) Chapter 3 Electrochemistry QuizClass 12 Chemistry (Part I) Chapter 4 Chemical Kinetics QuizClass 12 Chemistry (Part I) Chapter 5 Surface Chemistry QuizClass 12 Chemistry (Part Ii) Chapter 10 Haloalkanes And Haloarenes QuizClass 12 Chemistry (Part Ii) Chapter 11 Alcohols QuizClass 12 Chemistry (Part Ii) Chapter 12 Aldehydes QuizClass 12 Chemistry (Part Ii) Chapter 13 Amines QuizClass 12 Chemistry (Part Ii) Chapter 14 Biomolecules QuizClass 12 Chemistry (Part Ii) Chapter 15 Polymers QuizClass 12 Chemistry (Part Ii) Chapter 16 Chemistry In Everyday Life QuizClass 12 Chemistry (Part Ii) Chapter 7 P Block Elements QuizClass 12 Chemistry (Part Ii) Chapter 8 D And F Block Elements QuizClass 12 Chemistry (Part Ii) Chapter 9 Coordination Compounds QuizClass 12 Computer Science Chapter 1 Data Structures Using Python QuizClass 12 Computer Science Chapter 3 Database Management Systems QuizClass 12 Computer Science Chapter 4 Structured Query Language (Sql) QuizClass 12 Computer Science Chapter 5 Networking And Cyber Security QuizClass 12 Computer Science Chapter 6 Boolean Algebra And Logic Gates QuizClass 12 Economics (Indian Economic Development) Chapter 1 Development Experience (1947 90) And Economic Reforms Since 1991 QuizClass 12 Economics (Indian Economic Development) Chapter 2 Current Challenges Facing The Indian Economy QuizClass 12 Economics (Indian Economic Development) Chapter 3 Development Experience Of India A Comparison With Neighbours QuizClass 12 Economics (Macro Economics) Chapter 1 Introduction QuizClass 12 Economics (Macro Economics) Chapter 2 National Income Accounting QuizClass 12 Economics (Macro Economics) Chapter 3 Money And Banking QuizClass 12 Economics (Macro Economics) Chapter 4 Determination Of Income And Employment QuizClass 12 Economics (Macro Economics) Chapter 5 Government Budget And The Economy QuizClass 12 Economics (Macro Economics) Chapter 6 Open Economy Macroeconomics QuizClass 12 English (Flamingo) Chapter 1 The Last Lesson QuizClass 12 English (Flamingo) Chapter 2 Lost Spring QuizClass 12 English (Flamingo) Chapter 3 Deep Water QuizClass 12 English (Flamingo) Chapter 4 The Rattrap QuizClass 12 English (Flamingo) Chapter 5 Indigo QuizClass 12 English (Flamingo) Chapter 6 Poets And Pancakes QuizClass 12 English (Flamingo) Chapter 7 The Interview QuizClass 12 English (Flamingo) Chapter 8 Going Places QuizClass 12 English (Vistas) Chapter 1 The Third Level QuizClass 12 English (Vistas) Chapter 2 The Tiger King QuizClass 12 English (Vistas) Chapter 3 Journey To The End Of The Earth QuizClass 12 English (Vistas) Chapter 4 The Enemy QuizClass 12 English (Vistas) Chapter 5 Should Wizard Hit Mommy QuizClass 12 English (Vistas) Chapter 6 On The Face Of It QuizClass 12 English (Vistas) Chapter 7 Evans Tries An O Level QuizClass 12 English (Vistas) Chapter 8 Memories Of Childhood QuizClass 12 Entrepreneurship Chapter 1 Entrepreneurship And Enterprise QuizClass 12 Entrepreneurship Chapter 2 Entrepreneurial Planning QuizClass 12 Entrepreneurship Chapter 3 Project Formulation And Analysis QuizClass 12 Entrepreneurship Chapter 4 Enterprise Growth And Expansion QuizClass 12 Entrepreneurship Chapter 5 Business Ethics And Corporate Social Responsibility QuizClass 12 Entrepreneurship Chapter 6 Government Policies And Support To Entrepreneurship QuizClass 12 Entrepreneurship Chapter 7 Managing A Growing Enterprise QuizClass 12 Fine Arts Chapter 1 Elements And Principles Of Design QuizClass 12 Fine Arts Chapter 2 Advanced Colour Theory QuizClass 12 Fine Arts Chapter 3 Drawing And Painting Techniques QuizClass 12 Fine Arts Chapter 4 Art Movements Modern And Contemporary QuizClass 12 Fine Arts Chapter 7 Exhibition And Critique QuizClass 12 Geography Chapter 1 Human Geography Nature And Scope QuizClass 12 Geography Chapter 10 Disaster Management QuizClass 12 Geography Chapter 2 Population And Human Settlements QuizClass 12 Geography Chapter 3 Human Development QuizClass 12 Geography Chapter 4 Transport And Communication QuizClass 12 Geography Chapter 5 Primary Activities QuizClass 12 Geography Chapter 6 Secondary Activities QuizClass 12 Geography Chapter 7 Tertiary And Quaternary Activities QuizClass 12 Geography Chapter 8 Regional Development QuizClass 12 Geography Chapter 9 Environmental Geography QuizClass 12 History Chapter 1 The Rise Of Nationalism In Europe QuizClass 12 History Chapter 10 The Cold War Era QuizClass 12 History Chapter 2 Nationalism In India QuizClass 12 History Chapter 3 The Making Of A Global World QuizClass 12 History Chapter 4 The Age Of Industrialisation QuizClass 12 History Chapter 5 Print Culture And The Modern World QuizClass 12 History Chapter 6 The First World War QuizClass 12 History Chapter 7 The Interwar Years QuizClass 12 History Chapter 8 The Second World War QuizClass 12 Home Science Chapter 2 Fabric And Apparel QuizClass 12 Home Science Chapter 3 Food And Nutrition QuizClass 12 Home Science Chapter 4 Human Development QuizClass 12 Home Science Chapter 5 Adolescence And Life Skills QuizClass 12 Home Science Chapter 7 Textiles And Clothing QuizClass 12 Mathematics Chapter 1 Relations And Functions QuizClass 12 Mathematics Chapter 10 Vector Algebra QuizClass 12 Mathematics Chapter 11 Three Dimensional Geometry QuizClass 12 Mathematics Chapter 12 Linear Programming QuizClass 12 Mathematics Chapter 13 Probability QuizClass 12 Mathematics Chapter 2 Inverse Trigonometric Functions QuizClass 12 Mathematics Chapter 3 Matrices QuizClass 12 Mathematics Chapter 4 Determinants QuizClass 12 Mathematics Chapter 5 Continuity And Differentiability QuizClass 12 Mathematics Chapter 6 Applications Of Derivatives QuizClass 12 Mathematics Chapter 7 Integrals QuizClass 12 Mathematics Chapter 8 Applications Of Integrals QuizClass 12 Mathematics Chapter 9 Differential Equations QuizClass 12 Philosophy Chapter 1 Philosophy And Its Relation With Other Disciplines QuizClass 12 Philosophy Chapter 2 Epistemology The Theory Of Knowledge QuizClass 12 Philosophy Chapter 3 Metaphysics QuizClass 12 Philosophy Chapter 4 Ethics QuizClass 12 Philosophy Chapter 5 Indian Philosophy Classical Traditions QuizClass 12 Philosophy Chapter 6 Modern Western Philosophy QuizClass 12 Philosophy Chapter 7 Philosophy In Contemporary Times QuizClass 12 Physical Education Chapter 1 Management Of Sports And Physical Activity QuizClass 12 Physical Education Chapter 2 Planning In Sports QuizClass 12 Physical Education Chapter 3 Children And Women In Sports QuizClass 12 Physical Education Chapter 4 Test, Measurement And Evaluation In Sports QuizClass 12 Physical Education Chapter 5 Kinesiology, Biomechanics And Sports QuizClass 12 Physical Education Chapter 6 Yoga And Lifestyle QuizClass 12 Physical Education Chapter 7 Physical Education And Leadership QuizClass 12 Physical Education Chapter 8 Training And Doping In Sports QuizClass 12 Physical Education Chapter 9 Physiology And Exercise QuizClass 12 Physics (Part I) Chapter 1 Electric Charges And Fields QuizClass 12 Physics (Part I) Chapter 2 Electrostatic Potential And Capacitance QuizClass 12 Physics (Part I) Chapter 3 Current Electricity QuizClass 12 Physics (Part I) Chapter 4 Moving Charges And Magnetism QuizClass 12 Physics (Part I) Chapter 5 Magnetism And Matter QuizClass 12 Physics (Part I) Chapter 6 Electromagnetic Induction QuizClass 12 Physics (Part I) Chapter 7 Alternating Current QuizClass 12 Physics (Part I) Chapter 8 Electromagnetic Waves QuizClass 12 Physics (Part Ii) Chapter 10 Wave Optics QuizClass 12 Physics (Part Ii) Chapter 11 Dual Nature Of Radiation And Matter QuizClass 12 Physics (Part Ii) Chapter 12 Atoms QuizClass 12 Physics (Part Ii) Chapter 13 Nuclei QuizClass 12 Physics (Part Ii) Chapter 14 Semiconductor Electronics Materials QuizClass 12 Physics (Part Ii) Chapter 9 Ray Optics And Optical Instruments QuizClass 12 Political Science Chapter 1 Challenges Of Nation Building QuizClass 12 Political Science Chapter 10 Challenges To Democracy QuizClass 12 Political Science Chapter 2 Planning And Development QuizClass 12 Political Science Chapter 3 India'S Foreign Policy QuizClass 12 Political Science Chapter 4 India After Independence QuizClass 12 Political Science Chapter 5 Democracy And Diversity QuizClass 12 Political Science Chapter 6 Gender, Religion And Caste QuizClass 12 Political Science Chapter 7 Popular Struggles And Movements QuizClass 12 Political Science Chapter 8 Politics Of Planned Development QuizClass 12 Political Science Chapter 9 India'S External Relations QuizClass 12 Psychology Chapter 1 Variations In Psychological Attributes QuizClass 12 Psychology Chapter 10 Industrial Organisational Psychology QuizClass 12 Psychology Chapter 2 Self And Personality QuizClass 12 Psychology Chapter 3 Meeting Life Challenges QuizClass 12 Psychology Chapter 4 Psychological Disorders QuizClass 12 Psychology Chapter 5 Therapies QuizClass 12 Psychology Chapter 6 Attitude And Social Cognition QuizClass 12 Psychology Chapter 7 Social Influence And Group Processes QuizClass 12 Psychology Chapter 8 Psychology And Life QuizClass 12 Psychology Chapter 9 Applications Of Psychology QuizClass 12 Sociology Chapter 1 Structural Change And Development In India QuizClass 12 Sociology Chapter 3 The Demographic Structure Of Indian Society QuizClass 12 Sociology Chapter 5 Patterns Of Social Inequality And Exclusion QuizClass 12 Sociology Chapter 6 Challenges Of Cultural Diversity QuizClass 12 Sociology Chapter 8 Social Change In Modern India QuizClass 12 Sociology Chapter 9 Globalisation And Social Change Quiz 🏠 Back to Homepage 📘 Download PDF Books 📕 Premium PDF Books