Replication strategies manage how data copies and sync across database nodes. Master-Slave replication has one primary node that accepts writes and copies data to slave nodes for reading. Master-Master replication involves two nodes that both accept writes and keep data synchronized. Multi-Master replication allows multiple nodes to accept writes and sync changes to all nodes. The execution flow starts with data changes on the primary node, then replication type determines how data is copied or synced, and ends with clients accessing updated data. Variables like data on primary, slaves, and other masters change step-by-step as replication proceeds. Key moments include understanding why slaves update after primary in Master-Slave, how Master-Master keeps data consistent, and how Multi-Master allows flexible writes. Visual quizzes test understanding of when slaves update, when all nodes sync, and which strategy allows multi-node writes.