Question: Design and implement a Java program for programming exercise 6.18, page 238 (name it CheckPassword), to verify a password according to asset of rules stated
Design and implement a Java program for programming exercise 6.18, page 238 (name it CheckPassword), to verify a password according to asset of rules stated in the problem statement. Follow the instructions in the problem statement. For three boolean methods, one for each stated rule, to check if that rule is met or not. A boolean method return a boolean value. A password is valid if all three rule methods return true values, otherwise the password is invalid. Design the test program main method such that it allows the user to re-run the program with different inputs ((i.e., use a loop structure). Document your code and organize the outputs properly using escape characters.

6.18 (Check password) Some websites impose certain rules for passwords. Write a method that checks whether a string is a valid password. Suppose the passwond rules are as follows: A password must have at least eight characters. A password consists of only letters and digits. A password must contain at least two digits. Write a program that prompts the user to enter a password and displays Valid Password if the rules are followed or Invalid Password otherwise
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
