Question
Why is an explicit schema often preferable when reading large CSV data?
Select an option. Your answer will be checked instantly.
Correct Answer: B. It avoids an inference pass and prevents incorrect type guesses
Explanation:
Inference may scan data and misinterpret unusual values.
An explicit schema gives predictable types and lower startup cost.
Leave a Reply