Multiple choice assembly You want to initialize the IP register with the value 2000: Mov IP,2000 Jmp 2000 Mov 2000,IP You can not change IP register Reveal answer Fill a bubble to check yourself B Correct answer Explanation The Instruction Pointer (IP) register cannot be modified directly using a standard MOV instruction (e.g., 'MOV IP, 2000' is invalid). To jump to a specific address and update IP, one must use a jump instruction like 'JMP 2000'.