retagged by
5,323 views

4 Answers

2 votes
2 votes

In Caesar Cipher algorithm:

If we have to Decrypt the message, Decrease(count backwards) the value given key(15 in this question) times.

If we have to Encrypt the message, Increase(count forward) the value given key times.

Here, we have to Decrypt WTAAD:

W=23, T=20, A=1, A=1, D=4 and key = 15.

So, as already mentioned above we have decrypt by 15.

W = 23-15 = 8 = H

T = 20-15 = 5 = E

A = 1-15 = -14 = -14+26 = 12 = L  // You can also simply get it by counting 15 times backwards from A, like z,y,x,w.......

A = 1-15 = -14 = -14+26 = 12 = L

D = 4-15 = -11 = -11+26 = 15 = O

Hence, Option (B) is correct.

0 votes
0 votes
WTAAD -> Simply Replace each Letter with 15th Alphabet->LIPPS

So Option (1) is correct.
0 votes
0 votes
The message "WTAAD"  is already encrypted.

we need to decrypt it by simply shifting the keys by 15 places in reverse order.

hence W shifted 15 places in reverse order corresponds to H. similary

T->E

A->L

D->O

hence ans is HELLO, option 2.

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
2 answers
2
Pooja Khatri asked Jul 13, 2018
1,542 views
Match the following symmetric block ciphers with corresponding block and key sizes:$$\begin{array} {} & \textbf{List-I} & & \textbf{List-II} \\ \text{(a)} & \text{}\tex...
1 votes
1 votes
1 answer
3
go_editor asked Jul 20, 2016
2,515 views
Which of the following substitution technique have the relationship between a character in the plaintext and a character in the ciphertext as one-to-many?MonoalphabeticPo...
1 votes
1 votes
1 answer
4
go_editor asked Jul 24, 2016
2,400 views
If user A wants to send an encrypted message to user B, the plain text of A is encrypted with thePublic key of user APublic key of user BPrivate key of user APrivate key ...