Final answer:
The control of a program based on a specific condition is typically managed using an 'if statement', which executes code blocks based on whether the condition is true.
Step-by-step explanation:
The question seems to be referring to the concept of programming and how we can manipulate the flow of a program by transferring control under certain conditions. While the mention of 'mand' and 'motivation operation' isn't clear in typical programming terminology, I'll interpret it such that we're discussing control structures in programming that can respond to different conditions or 'operations'.
To transfer the control of a program based on a specific operation or condition, you typically use a conditional statement. Therefore, the answer is: Using an if statement. An if statement allows the program to execute a certain block of code only when the given condition is true, effectively transferring control based on the 'operation'.