InterviewSolution
Saved Bookmarks
| 1. |
Find the number of ways in which you can distribute 12 chocolates among 3 kids, such that each kid gets the even number of chocolates. |
|
Answer» Solution :Even + Even + Even = Even. THEREFORE it is possible to distribute even number of chocolates, as shown below: `{0,0,12}, {0, 2, 10}, {0,4,8},{0,6,6}rarr3+6+6+18` WAYS `{2,2,8},{2,4,6}rarr3+6=9` ways `{4,4,4}rarr1 ` WAY Total number of ways in which this can be DONE `=18+9+1=28` ways |
|