

InterviewSolution
Saved Bookmarks
1. |
Given 5 different green dyes, four different blue dyes and three different red dyes, how many combinations of dyes can be chosen taking at least one green and one blue dye ?A. 3600B. 3720C. 3800D. 3600 |
Answer» Correct Answer - B Possible number of choosing green dyes `= 2^(5)` Possible number of choosing blue dyes `= 2^(4)` Possible number of choosing red dyes `= 2^(3)` If atleast one blue and one green dyes are selected. Then, total number of selection `= (2^(5) - 1) (2^(4) - 1) xx 2^(3) = 3720` |
|