Asked by nihal

Count the number of passwords with following constraints. Assuming digits = {0, 1, …..9},
letters = {a, b, ….. y, z}
(a) 5 characters which are digits or letters.

(b) 4 characters which are digits or letters, with at least 1 digit.
(c) 4 characters which are digits. Adjacent characters are not the same.
(d) 6 characters which are letters. The first half must not equal to the last half.

Answers

Answered by oobleck
(a) 36^5
(b) 10 * 36^4 * 5
see what you can do with (c) and (d)
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions