Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
9 views1 page

Password Validation Program

Uploaded by

classfunction9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Password Validation Program

Uploaded by

classfunction9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Question 1: A website requires the users to input username and password to register.

Write a program
to check the validity of password input by users. Following are the criteria for checking the password:

1. At least 1 letter between [a-z]

2. At least 1 number between [0-9]

3. At least 1 letter between [A-Z]

4. At least 1 character from [$#@]

5. Minimum length of transaction password: 6

6. Maximum length of transaction password: 12

Your program should accept a sequence of comma separated passwords and will check them according
to the above criteria. Passwords that match the criteria are to be printed, each separated by a comma.
Example If the following passwords are given as input to the program: “ABd1234@1”, ”aF1#,2w3E*” ,
”2We3345” Then, the output of the program should be: “ABd1234@1”

Hints: In case of input data being supplied to the question, it should be assumed to be a console input

You might also like