Data Structures & Algorithms Multiple Choice Questions on “Polybius Square”.
1. Polybius square is also known by the name of? Answer: a 2. How many keys are required for encryption and decryption of data when we use asymmetric cipher? Answer: c 3. Which of the following is made possible by the use of Polybius square? Answer: a 4. What is the usual size of polybius square used for encrypting English alphabets? Answer: a 5. Polybius square cipher is most closely related to? Answer: a 6. Which two English letters are usually combined in polybius table? Answer: c 7. Auto key cipher is more secure than polybius square cipher? Answer: a 8. Polybius square cipher is less susceptible to frequency analysis. Answer: b 9. Which of the following cipher uses polybius square cipher in its first step of encrypting data? Answer: c 10. What will be the plain text corresponding to ciphered text “134325” if standard polybius square cipher is used for encryption? Answer: b 11. What will be the encrypted text corresponding to plain text “SAN” using standard polybius square cipher? 12.What will be the output of the following C++ code? a) 33344244 Answer: c & Algorithms. and Answers.
a) Polybius checkboard
b) Polybius table
c) Ploybius board
d) Ploybius keypad
Clarification: Polybius square is similar to substitution cipher. It is also known by the name of Polybius checkboard.
a) 0
b) 1
c) 2
d) 3
Clarification: Asymmetric cipher makes use of 2 keys for the purpose of encryption. One is known as public key whereas other is called private key.
a) To represent the plain text by smaller set of symbols
b) To represent the plain text by larger set of symbols
c) To represent the plain text by the letters of some other language
d) To represent the plain text by the same set of symbols
Clarification: Polybius square is similar to substitution cipher. Polybius square allows us to cipher the plain text in such a way that a minimum number of symbols are used in the encrypted text.
a) 5 X 5
b) 6 X 6
c) 26 X 26
d) 25 X 25
Clarification: The usual size of poybius square for encrypting English alphabets is 5 X 5. Usually, I and J are combined so as to fit all English letters in this table.
a) mono-alphabetic cipher
b) poly-alphabetic cipher
c) transposition cipher
d) additive cipher
Clarification: Polybius square cipher is much like any mono alphabetic cipher. It is because it applies a fixed substitution to the letters present in plain text.
a) A and B
b) Y and Z
c) I and J
d) J and K
Clarification: The usual size of poybius square for encrypting English alphabets is 5 X 5. Usually, I and J are combined so as to fit all English letters in this table.
a) true
b) false
Clarification: Polybius square is closely related to mono alphabetic substitution cipher and thus is more vulnerable to frequency analysis. Whereas polybius square being a poly alphabetic cipher is less vulnerable to frequency analysis and so is more secure.
a) true
b) false
Clarification: Polybius square cipher is closely related to mono alphabetic cipher. Thus it is quite vulnerable to frequency analysis much like any other mono alphabetic cipher.
a) Autokey cipher
b) One time pad cipher
c) ADFGVX cipher
d) Rail fence cipher
Clarification: ADFGVX cipher uses polybius square cipher in its first step of encrypting data. It uses a 6 X 6 version of polybius square.
a) SRH
b) CSK
c) RCB
d) KKR
Clarification: For decoding ciphered text we have to use the polybius square in and find out the letters corresponding to each pair of coordinate. So in this case the plain text is found to be “CSK”.
a) 431133
b) 341133
c) 441133
d) 114433
Answer: a
Clarification: For encrypting using polybius square cipher we have to use the table which is shown below and write (row, col) coordinates corresponding to each letter.
1 2 3 4 5
1 A B C D E
2 F G H I/J K
3 L M N O P
4 Q R S T U
5 V W X Y Z
So the ciphered text will be “431133”.#include
b) 44332434
c) 33432444
d) 11444323
Clarification: The given code implements polybius square cipher on a given plain text. So here as the plain text is “nsit” so the output of the code should be “33432444”.
