EXAM 300 ACTUAL QUESTIONS AND CORRECT
ANSWERS WITH RATIONALE LATEST UPDATE
ALREADY GRADED A+ ASSURED PASS
The D334 Final Exam for Western Governors University's Introduction to
Cryptography course assesses foundational knowledge of cryptographic concepts,
algorithms, and applications. The exam covers symmetric and asymmetric
encryption, hash functions, message authentication codes (MACs), digital
signatures, public key infrastructure (PKI), key management, and cryptographic
attacks. Students must demonstrate understanding of block ciphers (AES, DES,
3DES), stream ciphers (RC4, ChaCha), hash functions (MD5, SHA family),
lightweight cryptography for IoT, and cryptographic protocols like SSL/TLS and
IPSec. The exam also tests knowledge of common vulnerabilities including side-
channel attacks, downgrade attacks, and collision attacks. Success requires
comprehension of mathematical foundations, cryptographic primitives, and
practical security applications. The exam consists of multiple-choice questions
requiring both theoretical knowledge and practical application of cryptographic
principles.
Section 1: Foundations of Cryptography and Basic Ciphers (Questions 1-50)
Question 1
Original, unencrypted information is referred to as:
A) Text
B) Plaintext
C) Cleartext
D) Ciphertext
Answer: B
Rationale: Plaintext is the original, unencrypted form of data before it undergoes
the encryption process. Ciphertext is the encrypted output, and cleartext is
sometimes used interchangeably but plaintext is the standard cryptographic term.
,The process of converting plaintext to ciphertext is encryption, and the reverse is
decryption.
Question 2
Which of the following involves shifting plaintext letters by a fixed number of
positions in the alphabet?
A) Vigenere Cipher
B) Caesar Cipher
C) Playfair Cipher
D) Rail Fence Cipher
Answer: B
Rationale: The Caesar Cipher is a mono-alphabetic substitution cipher where each
letter in the plaintext is shifted a fixed number of positions down the alphabet. For
example, a shift of +3 would turn A into D. The Vigenere Cipher is a
polyalphabetic cipher using a keyword, while Playfair uses a 5x5 matrix and Rail
Fence uses transposition.
Question 3
Which cipher uses a keyword to determine different mappings for each character,
making it a polyalphabetic cipher?
A) Caesar Cipher
B) Vigenere Cipher
C) Morse Code
D) Pigpen Cipher
Answer: B
Rationale: The Vigenere Cipher is a polyalphabetic substitution cipher that applies
different Caesar shifts based on a keyword. The same plaintext character can be
encoded to different ciphertext characters depending on its position relative to the
keyword, making it harder to crack than mono-alphabetic substitution.
Question 4
Which of the following is considered an encoding method rather than a true
cipher?
A) Caesar Cipher
B) Vigenere Cipher
C) Morse Code
,D) Playfair Cipher
Answer: C
Rationale: Morse Code translates characters into sequences of dots and dashes but
does not hide the meaning of the message through cryptographic transformation. It
is an encoding method, not a cipher, because no secret key is used to protect the
information.
Question 5
The Playfair Cipher operates on which size matrix?
A) 3x3
B) 4x4
C) 5x5
D) 6x6
Answer: C
Rationale: The Playfair Cipher uses a 5x5 matrix containing the alphabet with the
letter J typically omitted (combining I and J). Encryption and decryption follow
specific rules for handling digraphs using row and column combinations from the
matrix.
Question 6
Which cipher makes use of a grid that maps letters to numeric values?
A) Caesar Cipher
B) Rail Fence Cipher
C) Bifid Cipher
D) Pigpen Cipher
Answer: C
Rationale: The Bifid Cipher uses a Polybius square grid to map letters to numeric
coordinates. It combines transposition and substitution by converting plaintext to
numbers, then fractionating and reconstituting the numbers to generate ciphertext.
Question 7
The Rail Fence Cipher employs which method to scramble text?
A) Substitution based on a keyword
B) Matrix-based substitution
, C) Writing text across multiple rows (rails)
D) Graphical character mapping
Answer: C
Rationale: The Rail Fence Cipher is a transposition cipher that writes plaintext in a
zigzag pattern across multiple rows (rails), then reads it row by row to produce
ciphertext. It scrambles the order of characters rather than substituting them.
Question 8
The Pigpen Cipher maps plaintext characters to:
A) Numeric values
B) Graphical symbols
C) Other alphabetic characters
D) Binary sequences
Answer: B
Rationale: The Pigpen Cipher is a mono-alphabetic substitution cipher that maps
plaintext characters to graphical symbols based on a grid pattern. Each letter is
represented by a unique symbol or combination of symbols, making it a visual
substitution cipher.
Question 9
Which of the following correctly describes a mono-alphabetic code or substitution?
A) Multiple mappings from alphabet to cipher alphabet
B) Single mapping from alphabet to cipher alphabet
C) No mapping is used
D) Mapping based on a keyword
Answer: B
Rationale: A mono-alphabetic substitution uses a single, fixed mapping from the
plaintext alphabet to a cipher alphabet. Each plaintext character always maps to the
same ciphertext character. The Caesar Cipher is a classic example of a mono-
alphabetic substitution.
Question 10
A polyalphabetic cipher uses which type of mapping?
A) Single mapping from alphabet to cipher alphabet