Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hello, new to java program and need help. We're to Create a program SSNValidator.java. Your program must have the following method: public static boolean isValidSSN(String

Hello, new to java program and need help. We're to 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.

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 You must use the Character class in this method for validation. If you use regular expressions you will receive a grade of zero. NO INPUT OR OUTPUT SHOULD BE DONE ANYWHERE EXCEPT main IN BOTH PROGRAMS. Do NOT use Eclipse, NetBeans, or IntelliJ for any labs or assignments. Do NOT create packages or projects

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Flash XML Applications Use AS2 And AS3 To Create Photo Galleries Menus And Databases

Authors: Joachim Schnier

1st Edition

0240809173, 978-0240809175

Students also viewed these Databases questions