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"

Add arrays to your program to handle more data.

Week 5: Add arrays to your program to handle more data.

Examples: In the programming

tutorial, add a tutorial on working with arrays. Then use arrays to store the answers to multiple questions so that you can compute a total score.

Week 5: Add arrays to your program to handle more data.Examples: In the programming tutorial, add a tutorial on working with arrays. Then use arrays tostore the answers to multiple questions so that you can compute a total score.“ This week I am adding arrays to this program”#include <iostream>using namespace std;int main(){char ch=’Y’;int gateNo; // integer for gate numberint choice;cout << “Menu” << endl;cout << “1. Check movies, their ±me and gate\n2. Exit\n”;//validate user input in a loopwhile(true) {cin >> choice;if(choice < 1 || choice > 2) {cout << “Menu” << endl;cout << “1. Check movies, their ±me and gate\n2. Exit\n”;} else {break;}
 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

(TCO 6) UML gives two ways to show nesting. The first is very ______, as it shows modeling elements physically contained in the package

3. (TCO 6) UML gives two ways to show nesting. The first is very ______, as it shows modeling

elements physically contained in the package. An alternative nesting _____ is useful when there is a lot of nesting, or complex nesting, that might be confusing to show with embedding. (Points : 3)       graphic, textual

a. graphic, textual

b.  textual, syntax

c.  textual, verbage

d.   graphic, syntax

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

(TCO 6) Package generalization is similar in many ways to class generalization. In package generalization (

4. (TCO 6) Package generalization is similar in many ways to class generalization. In package

generalization (Points : 3)

a. the more specialized child packages inherit the public elements from their parent package

 

b. the less specialized child packages inherit the public elements from their parent package

c. the more specialized child packages inherit the private elements from their parent package.

d. the less specialized child packages inherit the private elements from their parent package

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"