

InterviewSolution
Saved Bookmarks
1. |
Round-Robin Tournament is of two types. Name them and given one major difference between them. |
Answer» There are two types of league or round robin tournaments- i) Single League Tournament : In a single league, every team plays with every other team once. Number of matches = N(N-1)/2 Where, N = Number of teams. ii) Double League Tournament : In double league, every team plays with every other team twice. Number of matches = N(N-1) Where, N = Number of teams. |
|