Multiple Choices
Which of the following code snippets creates and connects to a new SQLite Database?
(Choose1answer)
A. import sqlite3 connection = sqlite3.connect("test_database.db")
B. import sqlite3 connection = sqlite3.create("test_database.db")
C. from sqlite3 import Connection connection = Connection("test_database.db")
D. import sql connection = sql.connect("test_database.db")