Suppose we have a card which is used as a security device. This grid is always the same for a particular person and is a 10 x 7. Each cell of this grid contains two random letters or numbers 0-9 Ex. col 1 row 1 = "QW". The password generated from this is 6 letters long or made from 3 cells. I want to know how many possible combinations there could be of this.
My math/thinking as I am not a mathematician.
For one cell is 2 * 36 as there are two characters.
The grid is 10 x 7 so 70
70 * (2*36) = 5040
Now if the my previous math is wrong or not I am unsure how to calculate the repeat properly. I'm assuming it would be 5040 x 3 for the 6 length password?