Read 10 passwords from a fileCreate a method called verifyPassword as described below verifyPassword: this takes a string (a password) and returns true if it meets the following criteria:
• it is at least 8 characters long but can handle a password that is 80 characters long
• it contains at least one letter
• it contains at least one digit
• it contains at least one of these four characters (: ? ! ,) Otherwise it returns false.
•The program should inform the user what is missing if they are unable to meet the criteria
•For example: Jackson as a password does not have a special character
This assignment has been answered 2 times in private sessions.
© 2024 Codify Tutor. All rights reserved