You need to figure out what 36P6 means. When you want to see a permutation of only 6 alphanumeric characters picked from 36 you will use 36P6.
The question asks how many different 6 letter/number alphanumeric codes can we generate.
The key is to break down the problem into simple terms.
Lets use an example.. ( a corny one maybe... )
Lets say I give you 36 movie DVDs....
If I ask you to pick one movie a day, in how many days will you start repeating the movies?
Answer : 36..
If you think about it, how many ways can you pick 1 item from 36 things... it is 36.
Now if I extend the example to alphanumeric codes, {A-B, 0-9}, you can pick the first of six numbers in 36 ways.
If you want to pick the second number then you can again pick it in 36 ways and so on...
Total number of ways = Number of ways you can pick first number x Number of ways you can pick second number x Number of ways you can pick third number x Number of ways you can pick fourth number x Number of ways you can pick fifth number xNumber of ways you can pick sixth number
= 36x36x36x36x36x36x36 = 36^6
Remember that this is true only if you can repeat the number/letter. If there is no repetition, then the answer is
36x35x34x33x32x31
Hope this helps.