0% found this document useful (0 votes)
6 views

Question Bank

Uploaded by

pandavyagnesh5
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Question Bank

Uploaded by

pandavyagnesh5
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Question Bank

Unit 1 Introduction to SQLite

1. Explain features of SQLite in details.


2. Explain storage classes/data types of SQLite in details.
3. What is trigger? Explain it with example.
4. Explain following clauses in SQLite : CASE, like, intersect, union, union all, distinct, limit

Unit 2 Database backup and CSV handling

1. How we can take back up of table structure? How to backup entire database in a file?
2. How to import a csv file to table? How to export csv file into table?
3. Explain .mode, .csv, .output, .schema command with example

Unit 3 Python interaction with SQLite

1. What do you mean by namespace? Explain various namespace of python.


2. Explain following methods of sqlite3 module in details.
a. Connect()
b. Execute()
c. Fetchone()
d. Fetchall()
e. Commit()
3. Write a python script to perform the following task.
a. Create database student.db
b. Create table student (rno, name, marks)
c. Insert 5 records.
d. Display the students who score more than 80 marks.
4. What do you mean by module? How we can create a module in python? How to import
module using import and from import statement?

Unit 4 Python interaction with text and csv

1. Explain csv module in details.


2. What do you mean by data frame? Explain any 5 function of data frame.
3. Explain central tendency measures in details.
4. Explain following functions.
a. Head()
b. Tail()
c. Loc()
d. Iloc()
e. Describe()
5. Explain reading and writing to and from csv file with appropriate example.

Unit 5 Data Visualization using data frame

1. Explain matplotlib.pyplot module with example.


2. Explain bar chart in details with example.
3. Explain pie chart with example.
4. Explain scatter plot with example.
5. Explain line chart with example.
6. Explain following methods.
a. Xlabel()
b. Ylabel()
c. Set_title()
d. Legend()
e. Subplot()

You might also like