What is the default storage engine?
A. EXAMPLE
B. ARCHIVE
C. MyISAM
D. NDB
Answer: Option C
Solution (By Examveda Team)
This question is asking about the default storage engine used by MySQL. A storage engine is responsible for how MySQL stores and manages your data.Think of it like a filing system for your data. Different storage engines organize the data differently.
The question wants to know which storage engine is automatically used if you don't specify one when you create a table.
Let's look at the options:
Option A: EXAMPLE - This isn't a real MySQL storage engine.
Option B: ARCHIVE - This is a storage engine, but it's not the default.
Option C: MyISAM - This was the default storage engine in older versions of MySQL.
Option D: NDB - This is a storage engine designed for distributed databases, not the default.
The correct answer is Option C: MyISAM. While MyISAM isn't the default anymore in newer MySQL versions, it was for a long time.
Important Note: In modern MySQL versions, the default storage engine is usually InnoDB, but the question is likely referring to older versions where MyISAM was the standard.

Join The Discussion