The word is written in reverse order. COMPUTER becomes RETUPMOC, then each letter is shifted by +1: R+1=S, E+1=F, T+1=U, U+1=V, P+1=Q, M+1=N, O+1=P, C+1=D. Wait, that gives SFUVQNPD, not RFUVQNPC. Let me recalculate. COMPUTER reversed is RETUPMOC. But the code is RFUVQNPC. Let me check if it’s just reversed: COMPUTER reversed is RETUPMOC. The code RFUVQNPC doesn’t match. Let me try a different approach. If we reverse COMPUTER, we get RETUPMOC. Then apply +1 to each: R+1=S, E+1=F, T+1=U, U+1=V, P+1=Q, M+1=N, O+1=P, C+1=D = SFUVQNPD. This doesn’t match the given code. Let me try another approach. Maybe the pattern is different. Let me check position by position: C->R (+15), O->F (-9), M->U (+8), P->V (+6), U->Q (-4), T->N (-6), E->P (+11), R->C (-15). The pattern is not consistent. Let me assume the word is simply reversed: COMPUTER -> RETUPMOC. But the given code is RFUVQNPC. Let me check if there’s a consistent shift: R->R (0), E->F (+1), T->U (+1), U->V (+1), P->Q (+1), M->N (+1), O->P (+1), C->C (0). This is not consistent either. Let me assume the pattern is to reverse the word and then apply a Caesar cipher with shift +1, but the first and last letters remain unchanged. COMPUTER reversed is RETUPMOC. Apply +1 to middle letters: R, E+1=F, T+1=U, U+1=V, P+1=Q, M+1=N, O+1=P, C. This gives RFUVQNPC, which matches! So for KEYBOARD: Reverse to get DRAOBYEK. Apply +1 to middle letters: D, R+1=S, A+1=B, O+1=P, B+1=C, Y+1=Z, E+1=F, K. This gives DSBPCZFK.