# Problem What is the value in `r0` after executing the following instructions? ```armasm MOV r1, #0x35 MOV r2, #0xF0 EOR r0, r1, r2 ``` # Process ... # Answer ``` 0xC5 ```