Vidyalelo
MySQL · Q265

MySQL

Programming · MySQL · question 265

Q265

Bulk loading is less efficient than single row loading.

A.
True
B.
False
Answer

Answer: Option B

Solution

Answer: Option B
Solution:
This question is about how data is loaded into a MySQL database.

There are two ways to load data:

1. Single row loading: This method loads one row of data at a time. This is like adding items to a shopping cart one by one.
2. Bulk loading: This method loads a large amount of data all at once, like dumping a whole shopping cart into the checkout line.

Which method is more efficient?
Think about it: Bulk loading is more efficient because it avoids the overhead of processing each row individually.

So, the answer is Option B: False. Bulk loading is more efficient than single row loading.