Best writers. Best papers. Let professionals take care of your academic papers

Order a similar paper and get 15% discount on your first order with us
Use the following coupon "FIRST15"
ORDER NOW

Need help developing a software package that requires users to enter their own passwords

Need help developing a software package that requires users to enter their own passwords. Loop until the passwords

meet the software criteria.

You are developing a software package that requires users to enter their own passwords. Loop until thepasswords meet the software criteria.The password should be at least six characters long.The password should contain at least one uppercase and one lowercase letter.The password should have at least one digit.The program should have an isValid function that will test if the password is valid. Use the following code todeclare a password variable with a global constant int SIZE=80;charpassword[SIZE];Next, use a while(true) to continue looping until the user enters a valid password. Read in the password andcall the isValid program. You can use the isupper(), islower(), and isdigit() functions. For example,if(isdigit(*password))//if this is true, you know the password has at least one digit.Output from Program:Password requirements:– The password should be at least six characters long.– The password should contain at least one uppercase– and one lowercase letter.– The password should have at least one digit.Enter a password: aaaaaaaThe password was invalid.Password requirements:– The password should be at least six characters long.– The password should contain at least one uppercase– and one lowercase letter.– The password should have at least one digit.Enter a password: aBcdEfgThe password was invalid.Password requirements:– The password should be at least six characters long.– The password should contain at least one uppercase– and one lowercase letter.– The password should have at least one digit.Enter a password: abc123DThe password is valid.Step 2:Processing LogicUsing the pseudocode below, write the code that will meet the requirements.Declare constants SIZE and MINFunction prototype for isValidMain FunctionDeclare the password as a character array.
Background image of page 1
 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"