OD
(Choose 1 answer)
Which of the following code snippets creates and connects to a new SQLite Database?
A. import sqlite3
connection = sqlite3.connect("test_database.db")
B. import sql connection = sql.connect("test_database.db")
C. import sqlite3
connection = sqlite3.create("test_database.db")
D. from sqlite3 import Connection
connection = Connection("test_database.db")
Exit (31