Which storage engine is the default in MySQL since version 5.5?
- A MyISAM
- B InnoDB
- C MEMORY
- D CSV
Answer
InnoDB
InnoDB became the default because it supports transactions, row-level locking, foreign keys and crash recovery, none of which MyISAM provides.





