Combinations
The number of ways to select r things from a total of n things is given by combination formula:
[ n! = n*(n-1)*(n-2)*...*1 ]
Our problem wants us to select 3 fruits from a total of 7 types of fruits. So
and
. Plugging in the formula:

So, there are 35 different ways to choose 3 fruits from 7 types of fruit.
ANSWER: 35 Ways