Python Question Bank
Python Question Bank
Python Programming
UNIT I
1. What is SQLite?
2. What is SQLite used for?
3. How to connect to MySQL/SQLite database from Python.
4. What is of cursor object?
5. How to select all records from a table?
6. What are the methods used to get a single row and all the rows from the
table?
7. How do you establish connection with MySQL/SQLite in Python?
8. How do you execute a SQL command using cursor object? Give example
9. What is Pandas Library?
10.How to create table using MySQL/SQLite?
11.What is Padas Series? Give example.
12.Write Python code to create Dataframe from a dictionary and display
its contents.
13.Write Python code to create Dataframe from a tuple and display its contents.
14.What is Pandas Dataframe? How it is created ?
15.Give the Python code to create dataframe from .csv file
16. How to add new column to daataframe ?
17.Give the Python code to create datafram from Excel file.
18. Give Python code to find maximum and minimum values for
particular column of dataframe.
19. What is Data Visualization ?
20. What is matplotlib and pyplot ?
Long Answers Questions
1. Write Python code to create a table with example
2. Write Python code to retrieve all records from a table and display it
3. Explain the steps to insert a row to a table with a Python code
4. Write Python program to enter n rows to a table with dynamic values
5. Write Python code to search a matching row in a table with suitable
example.
6. Write Python program to delete a row from a Emptable by accepting the
Empnumber
7. Explain how records are inserted and deleted from the MySQL/SQLite
database with example
8. With code examples explain creating pandas series using Scalar data
and Dictionary.
9. Explain any four string processing methods supported by Pandas
Library with example.
10. Explain with example any two methods of creating Dataframe.
11. Explain any five operations on Data frame with example.
12. Explain Bar Graph creation using Mat plot Library module.
13. Write a program to display histogram.
14. Write a Python program to display Pie Chart showing percentage of
employees in each department. Assume there are 4 departments
namely Sales , Production , HR and Finance.
15. Write a Python Program to create Line Graph showing number of
students of a college in various Years. Consider 8 years data.