1. Computer Science Engineering (CSE)
  2. Design and Analysis of Algorithms
  3. You have n dice each having f faces. Wha...
Q.

You have n dice each having f faces. What is the number of permutations that can be obtained when you roll the n dice together?

A. n*n*n…f times
B. f*f*f…n times
C. n*n*n…n times
D. f*f*f…f times
Answer» B. f*f*f…n times
Explanation: each die can take f values and there are n dice. so, the total number of permutations is f*f*f…n times.

Discussion