Question: Question 3 Write a program to create a password for a user's account. The password should include three characters, followed by a #sign, followed by

Question 3 Write a program to create a password for a user's account. The password should include three characters, followed by a #sign, followed by the sum of the length of the first, middle and last name strings, multiplied by 9. Assume that the user enters all three names (first name, middle name and last name). The three characters are extracted from the user's first, middle and last names as follows: first character is the first character extracted from the first name and it should be in uppercase second character is extracted from the middle of the middle name and it should be in lower case (e.g., for "Josie", character would be "s", for "Joey", character would be "e") third character is the last character extracted from the last name and it should be in uppercase Sample input/output could be as follows: Enter your first name: henny Enter your middle name: DeeVine Enter your last name: PENNY Your password is: HvY#153 Activate Windows
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
