•Write a JAVA program to check a given password strength from auser's input.
•Create a method to check the number of characters. It must bemore than 8.
•Create a method to check the password to have at least oneuppercase letter.
•Create a method to check the password to have at least onelowercase letter.
•Create a method to check the password to have at least onedigit.
•Create a method to check the password to have at least onespecial character (!, 2, #, %, &, *, (, ), etc.).