Binary tree traversals involve visiting each node exactly once in a defined order. There are three common traversal techniques: inorder, preorder, and postorder. Inorder traversal visits the left subtree, then the root, then the right subtree. Preorder visits the root, left subtree, then right subtree. Postorder visits the left subtree, right subtree, then the root. The order nodes are accessed depends on the traversal method used.