<span> You must specify a master account.</span>
Answer:
Replace
if userAge > 20
with
userAge > 19
Explanation:
if userAge > 20 checks if age is 21, 22, 23, 24........
The else condition which prints "I am a teenager" checks if age is 20, 19, 18....
Notice that 20 is inclusive of the else condition; this shouldn't be because for userAge to be less than 20, 20 isn't inclusive
To solve this,
Replace if userAge > 20 with userAge > 19
So that, the else
The else condition which prints "I am a teenager" checks if age is 19, 18, 17, 16....
True. An encryption scheme doesn't care what it is encrypting, be it compressed or uncompressed.
Note that an encrypted file will look like random data to most compression algorithms, so it makes sense to first compress, then encrypt, to get the maximum efficiency from the compression.