Which of the following SQL statements is used to create an index on a table in SQLite?
a) CREATE INDEX
b) MAKE INDEX
c) ADD INDEX
d) None of the above
Answer: a) CREATE INDEX
Explanation: The CREATE INDEX statement is used to create an index on a table in SQLite.