Password verifier Visual Basic you develop a software package that require user
ID: 3623494 • Letter: P
Question
Password verifier Visual Basic
you develop a software package that require user to enter their passwords.
your software requires user's passwords to meet the following criteria:
the pass. should be at laest 6 characters long
the pass. should contain at least one numeric digit and at least one alphabetic character.
create an application the ask the user to enter a password. the application should
use a function named IsValid to verify that the pass. meets the criteria. It should
display a message indicating whether the pass. is valid or invalid.
the IsValid function should accept a string as its argumnet and return a boolean value. The string argument is the pass. to be checked. If the pass. is vald, the function should return true. Otherwise, it should return false.