Question: Create a program PasswordValidator.java. Your program must have the following method: public static boolean isValidPassword(String password) The method returns true if the password entered is
Create a program PasswordValidator.java. Your program must have the following method:
public static boolean isValidPassword(String password)
The method returns true if the password entered is valid, otherwise it returns false. The program should allow ONLY three chances to enter a valid password. Once the password is valid the program should terminate. A valid password MUST contain the following:
8 or more letters and digits (limit of 15)
At least one digit
At least one uppercase letter
must use the Character class in this method for validation.
NO INPUT OR OUTPUT SHOULD BE DONE ANYWHERE EXCEPT main IN BOTH PROGRAMS.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
