Which of the following commands is used to update data in a table in SQLite?
a) UPDATE
b) MODIFY
c) ALTER
d) CHANGE
Answer: a) UPDATE
Explanation: The UPDATE statement is used to update data in a table in SQLite. The syntax is as follows: UPDATE table_name SET column1=value1, column2=value2 WHERE condition;