If a string is to be generated with exactly 16 characters and it takes the following form:
aaaaa####aaaaaa
Where a is any of the 26 lower case letters and # is a number from 0-9 inclusive. How many possible combinations are there?
If they were all the same it would be 26^16 but since the the middle 4 only have 10 possible characters each how do you calculate it?