Describe the following: i. super() ii. pop() iii. __init__() iv. type() v. id() vi. bar() vii. show()
[7 marks]Give a comparison between List, Tuple and Dictionaries in Python.
[7 marks]Explain Formal and Actual arguments in Python. Also explain the following type of arguments with proper Example. 1. Positional Arguments 2. Keyword Arguments 3. Default Arguments 4. Variable Length Arguments
[7 marks]What is lambda function in python? Give its example. Also Explain filter (), map () and reduce () functions with reference to lambda in brief.
[7 marks]What is Decorators? What is Generators? Explain both with the suitable example.
[7 marks]What is Exception? Explain exception handling with suitable example.
[7 marks]What do you mean by inheritance in python? List types of Inheritance. Explain Multiple and Multi-level with suitable Example.
[7 marks]How many types of files are there in python? Write the different file handling operations with example. Page 1 of
[2 marks]What is abstract class and abstract method? How to create abstract class in python? Explain with its general structure and example.
[7 marks]What is Data Frame? In How many ways dataframe can be created? How to create Dataframe using dictionary?
[7 marks]What is the use of PyLab and matplotlib in Python? Explain the use of plot (), show () and title () functions of PyLab.
[7 marks]Explain Pie chart in detail with suitable example.
[7 marks]Explain the use of the following operations performed on dataframe with example: shape, head (), tail (), describe (), sort_values (), fillna(), dropna()
[7 marks]Write following programs for regular expressions. 1. To search for string starting with m and having total three characters using the search (), findall () and map () methods. 2. To split a string into pieces where one or more non alpha numeric characters are found.
[3 marks]What is regular expression? List & Explain each Meta Characters in with suitable example.
[7 marks]Write a python program which show to insert and delete records in employee table with following fields(emp_id , emp_name , emp_mnumber , emp_project).
[7 marks]How to use regular expression in file? Write a program that search the email id from text file. Page 2 of
[2 marks]