document.write( "Question 595797: The access code for a car's security system consists of four digits. The first digit cannot be 5 and the last digit must be even or zero. How many different codes are available? \n" ); document.write( "
Algebra.Com's Answer #377307 by jerryguo41(197)\"\" \"About 
You can put this solution on YOUR website!
Code:
\n" ); document.write( "1st Number: 1, 2, 3, 4, 6, 7, 8, 9, 0 (9 possible combos)
\n" ); document.write( "2nd Number: 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 (10 possible combos)
\n" ); document.write( "3rd Number: 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 (10 possible combos)
\n" ); document.write( "4th Number: 1, 3, 5, 7, 9 (5 possible combos)\r
\n" ); document.write( "\n" ); document.write( "So to calculate number of codes:
\n" ); document.write( "Possible numbers of (1st Number*2nd Number*3rd Number*4th Number)
\n" ); document.write( "\"9%2A10%2A10%2A5\"
\n" ); document.write( "\"4500\"\r
\n" ); document.write( "\n" ); document.write( "There are 4500 different possible combinations
\n" ); document.write( "
\n" );