This visual execution shows how schema design affects read-heavy workloads in MongoDB. First, we identify if reads dominate. Then we choose embedding to store related data together or referencing to keep documents smaller. Embedding allows fetching all data in one query, speeding reads, but updates require rewriting the whole document. Referencing needs extra queries or $lookup, slowing reads but improving write flexibility. The execution table traces inserting orders with embedded or referenced customer data, querying them, and updating embedded fields. Variable tracking shows how order documents change. Key moments clarify why embedding speeds reads and referencing slows them. The quiz tests understanding of these effects. The snapshot summarizes key points for quick reference.