Which of the following commands is used to view the structure of a table in SQLite?
a) DESCRIBE
b) SELECT
c) SHOW
d) EXPLAIN
Answer: a) DESCRIBE
Explanation: The DESCRIBE statement is used to view the structure of a table in SQLite. The syntax is as follows: DESCRIBE table_name;