Another approach to answer this could be the reverse way of thinking.
The question asks for total number of combinations possible when at least 2 players are Iranian. There are two approaches to solve this problem.
Straight forward wayHere we calculate the possible combinations of these independent events, and eventually add them, since keyword "or" is involved (i.e. mutually exclusive)
2 Iranian and 2 Turkish = 6C2 * 5C2 = (3*5) * (5*2) = 15*10 = 150
3 Iranian and 1 Turkish = 6C3 * 5C1 = (5*4) * 5 = 20*5 = 100
4 Iranian and 0 Turkish = 6C4 * 5C0 = (5*3) * 1 = 15
Now we add them all up all the likely scenarios for solution => 150 + 100 + 15 = 265
Alternate ApproachHere we calculate all the possible combinations and deduct all the combinations which cannot happen.
Total number of combinations = 11C4 = 330
0 Iranian and 4 Turkish = 6C0 * 5C4 = 1*5 = 5
1 Iranian and 3 Turkish = 6C1 * 5C3 = 6*10 = 60
Total number of selection possible - Not getting what we want => 330 - (5+60) = 265