Question: Why are QuerySets considered "lazy"?
- The results of a QuerySet are not ordered.
- QuerySets do not create any database activity until they are evaluated.
- QuerySets do not load objects into memory until they are needed.
- Using QuerySets, you cannot execute more complex queries.
Answer: The correct answer of the above question is Option B:QuerySets do not create any database activity until they are evaluated.