Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

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.

Explanation / Answer

Dear, You haven't specified the language you are looking for, so giving you both in c++ as welll as Java c++ //Header file section #include #include using namespace std; void main() { string password; int length; bool Case=false,digit=false; //inputting password coutpassword; length=password.length(); if(length