In this Java Program, a model like a password generator used in WordPress is being developed.
Firstly, the user is asked how long he/she would want the password to be and then a random password of that length is generated.
The program takes all the capital or block letters and adds then with the small letters and symbols and then users a random object to randomly select these characters from a StringBuilder object and then upon getting the exact length of the password, the password is displayed.
An online password check is also used to check how strong the password is and it happens to be very strong.