document.write( "Question 1013817: find the number of possible passwords for a system taking 3-5 character where at lest one of the input character is a number (0-9) and the rest from lower case English alphabet.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #630217 by Alan3354(69443)![]() ![]() You can put this solution on YOUR website! find the number of possible passwords for a system taking 3-5 character where at lest one of the input character is a number (0-9) and the rest from lower case English alphabet. \n" ); document.write( "------------- \n" ); document.write( "For 3 characters: \n" ); document.write( "It can be NAA, ANA or AAN \n" ); document.write( "10*26*26*3 \n" ); document.write( "For 4 characters: \n" ); document.write( "10*26*26*26*4 \n" ); document.write( "For 5 characters: \n" ); document.write( "10*26*26*26*26*5 \n" ); document.write( "---------------- \n" ); document.write( "Multiply, then add them. \n" ); document.write( " \n" ); document.write( " |