NEW
Font size
WorksheetsPython L19 Caesar Cipher II
Total questions: 9
Worksheet time: 5mins
What does the modulus operator (%) help us do in Caesar Cipher?
Add numbers together
Keep shifts within the alphabet limit
Convert letters to numbers
Count letters
To make sure big shifts don’t go past ‘z’, we use the Modulus operator.
What is the symbol of Modulus Operator?
%
#
@
!
In the improved cipher, all characters (letters, numbers, and symbols) are shifted.
True
False
Which of the following characters should not change when encoding?
A
B
!
c
Why do we use a while loop in this project?
To repeat the program until the user wants to stop
To find each letter
To create a list
To print one message
What does this code do?
The Caesar Cipher should ignore symbols like !, ?, and __________.
If you type a shift value of 27, it works the same as shift 1.
True
False
If your message is "hello world!" and your shift is 3, what happens to the ! symbol?
It becomes “$”
It disappears
It stays the same
It moves forward by 3
