Solution:The pattern followed here is- Constants are increased by +7
- Vowels are decreased by -5
In the word "PROUD"
The code for the consonants are
(P + 7 = W), (R + 7 = Y), (D + 7 = K)
The code for the vowels are
(O - 5 = J), (U - 5 = P)
The final code for the word “PROUD” will be WYJPK.
Similarly,
In the word "GUILTY"
The code for the consonants are
(G + 7 = N), (L + 7 = S), (T + 7 = A), (Y + 7 = F)
The code for the vowels are
(U - 5 = P), (I - 5 = D)
The final code for the word “GUILTY” will be NPDSAF.
Hence, NPDSAF is the correct answer.