Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

5. In order for user accounts to be secured, many websites ensures users to have a mix of different conditions while creating password. It includes

image text in transcribed
5. In order for user accounts to be secured, many websites ensures users to have a mix of different conditions while creating password. It includes techniques like minimum number of character, using a mix of characters and numbers and apllicability of capital and small letters. Following the above rules, an example of a strong password would be iReX@2020. The programmer designed a function called validate_password_conditions which takes the created password as a parameter. The function can return any ONE of the following messages on execution indicating the missed condition. Only one message can be returned. A) NOT_ENOUGH_CHARACTERS (if less than 8 characters in the password) B) MIX_OF_CHARACTERS_NOT_USED (if no special character was used in the password) C) BOTH_UPPERCASE_AND_LOWERCASE_NEEDED (if a mix of upper case and lower case letters not used) D) OK Suggest a suitable test case design method for testing the given method. Explain the choice of test case design method made, along with any assumptions made about the system. The method needs to be able to handle any type of input and part of testing should make sure that it does not crash. (25 marks)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

To solve p + 3q = 5z + tan( y - 3x)

Answered: 1 week ago