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