Question
1. Create a program SSNValidator.java. Your program must have the following method: public static boolean isValidSSN(String ssn) The method will determine if a social security
1.Create a program SSNValidator.java. Your program must have the following method:
public static boolean isValidSSN(String ssn)
The method will determine if a social security number is valid or not. The method returns true if valid, otherwise false. A valid social security number can contain only nine digits or can contain nine digits and two hyphens in the format: XXXXXXXXX or XXX-XX-XXXX Use the Character class in the method to determine if there are digits. The program must keep running until the user enters quit. If you use regular expressions you will receive a grade of zero.
2. 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started