Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using python, write a code for the program. 7. Error Detection Suppose you type a 14-digit credit card number into a Web site, but mistype
Using python, write a code for the program.
7. Error Detection Suppose you type a 14-digit credit card number into a Web site, but mistype one of the digits or inadvertently interchange two adjacent digits. The Web site will perform a validation check that always detects the first type of error and near ly always detects the second type of error. The validation check is as follows: 1. Starting with the leftmost digit, double it and then double every other digit after it. However, if any of the doubled digits is a two-digit number, subtract 9 from it. Then sum these new digits. For instance, if the credit card number is 58667936100244, then the digits considered are 5, 6, 7, 3, 1, 0, 4, their new replacements are 1, 3, 5, 6 2,0, 8, and the sum of the replacements is 25Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started