What is dictionary in Python? Explain any four built-in dictionary methods with example.
[3 marks]What are the key features of Python?
[4 marks]Consider the list lst=[9,8,7,6,5,4,3]. Write the Python program which performs the following operation without using built-in methods. 1) Insert element 10 at beginning of the list. 2) Insert element 2 at end of the list. 3) Delete the element at index position 5. 4) Print all elements in reverse order.
[7 marks]“List is mutable.” - Justify with suitable example.
[3 marks]Explain all augments print() method.
[4 marks]Write a Python program to generate list of fibonacci number upto n fibonacci numbers.
[7 marks]Differentiate List and Tuple in Python.
[3 marks]What is negative indexes and how they are used in Python?
[4 marks]What is monkey patching in Python explain with suitable example.
[7 marks]What is map in Python? Explain with example.
[3 marks]What is the difference between range and xrange?
[4 marks]Explain while loop & for loop with syntax and example in detail.
[7 marks]Explain usage of continue, break, and pass keyword in python.
[3 marks]Explain the exception handling in Python.
[4 marks]Write a program to sort the given list without using built-in methods.
[7 marks]Explain use of import keyword with suitable example.
[3 marks]Write a program which demonstrates multiple inheritance.
[4 marks]Write a program to search given number from list using binary search.
[7 marks]Explain inheritance in Python.
[3 marks]Explain any four methods for regular expression with proper example.
[4 marks]Write a program which draw square and hexagon using turtle.
[7 marks]Explain multi threaded programming in Python.
[3 marks]Explain any four method for TCP socket in Python.
[4 marks]Write GUI program using Tkinter which handle the button click event.
[7 marks]