Write the advantages of Python programming language over other languages.
[3 marks]Write a short note on data types in Python.
[4 marks]Write a program to get 5 numerical inputs from the user and display the sum and average of these numbers. Also display the largest and smallest value entered by the user.
[7 marks]Define following terms in the context of Python programming: 1) Identifier, 2) Statement and 3) Operator
[3 marks]What is precedence? Explain with at least 2 different examples.
[4 marks]Provide List of Assignment and Comparison Operators with its description.
[7 marks]Briefly explain the conditional statements available in Python with examples.
[7 marks]Explain the advantages of *args and **kwargs with examples.
[3 marks]Write a program that fulfills following conditions: 1) ‘while’ loop is executed 5 times only. 2) Use ‘True’ as the Boolean Expression for while loop.
[4 marks]Explain following methods of sets with proper syntax and example: add(), difference(), intersection(), issubset(), remove(), symmetric_difference() and union().
[7 marks]Identify the primary differences between a list and a tuple?
[3 marks]Differentiate between following for list: 1) append() and insert() 2) pop() and remove()
[4 marks]What is zip() function? Write a python program to illustrate the use of zip() function.
[7 marks]Enlist methods associated with File Object.
[3 marks]Give difference between Identifiers & Keywords.
[4 marks]Briefly explain NumPy and Pandas module.
[7 marks]What is user defined function? Why are they useful in programming?
[3 marks]What is NumPy? Explain in brief.
[4 marks]Write a program that prompts the user to enter a text file, reads words from the file, and displays all the non-duplicate words in ascending order.
[7 marks]Enlist the properties of ‘Dictionary’ class.
[3 marks]Differentiate the syntax of if...else and if...elif...else with an example.1
[4 marks]Explain graphing and visualization methods in python with examples.
[7 marks]What is immutable data? Explain tupple as immutable data type with necessary example.
[3 marks]Explain the syntax of for loop with an example.
[4 marks]Write a program that creates a list of 10 random integers. Then create two lists by name odd_list and even_list that have all odd and even values of the list respectively.
[7 marks]