KwickCards Networks and cyber safety
What does this program print?

Python: cyber safety
What does this program print?
- True
- False
- Error
- None
def is_strong(pw):
d = any(c.isdigit() for c in pw)
u = any(c.isupper() for c in pw)
return len(pw) >= 12 and d and u
print(is_strong("BlueRiverTrain42"))Combine cyber safety and Python in one small program.
The function checks three rules: at least 12 characters, at least one digit and at least one capital letter.
Answer: (A) True
'BlueRiverTrain42' is 16 characters long and has digits and capital letters, so all three rules pass. A word like 'sunflower' would return False: too short, no digit, no capital.
This is only a learning exercise; real password strength also depends on not reusing passwords and avoiding predictable words. Try adding a rule for special characters!
More on this: free Python lessons
More Networks and cyber safety cards
Which device forwards data using MAC addresses?
Address sizes in bits
Network topologies
Network devices and their jobs
Protocols to know
Networks ConceptsWritten by Kajal Mehta (Kajal Ma'am), MCA, teaching computer subjects since 2004. All KwickCards · KwickAcademy

