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

Q1. Generate a decision table to determine whether a password is valid using the

ID: 3741298 • Letter: Q

Question

Q1. Generate a decision table to determine whether a password is valid using the following problem description:

The following are the requirements of a password for an Internet banking site.

The length of the password should be between 6 and 8 characters

The password should not be the same as previous 3 passwords

The password should contain at least 2 letters or 2 numbers

The password should not contain the day, month and year of birthdate

The password should not contain the name and surname of the customer

The password should not contain more than 2 of the same character (e.g., aaa, 111) or more than 2 consecutive characters (e.g., abc,123)

Explanation / Answer

length of the password should be between 6 and 8 charactersand The password should not be the same as previous 3 passwords

The password should contain at least 2 letters or 2 numbers and The password should not contain the day, month and year of birthdate and The password should not contain the name and surname of the customer

If you need all condition in different row you need total 26 = 64 column

CONDITION

length of the password should be between 6 and 8 charactersand The password should not be the same as previous 3 passwords

T T T T F F F F

The password should contain at least 2 letters or 2 numbers and The password should not contain the day, month and year of birthdate and The password should not contain the name and surname of the customer

T T F F T T F F password should not contain more than 2 of the same character and more than 2 consecutive characters T F T F T F T F ACTION Passsword accepted T F F F F F F F