To create a binary tree manually, start by making a root node with a value. Each node has left and right pointers set to null initially. Then assign left and right children by creating new nodes and linking them to the parent node's left or right pointers. Repeat this process for each node you want to add. This builds the tree step-by-step. The execution table shows each step: creating the root, assigning left child, then right child, and the tree's visual state after each. Variables track the root and its children pointers. Key moments clarify why pointers start as null and what happens if assignments are missed. The quiz tests understanding of pointer assignments and tree structure at each step.