Concept:This question tests the formula for combinations, i.e. selecting 2 items from n items.Explanation:The combination formula is nCr=r!(n−r)!n!.Here r=2, so nC2=2!(n−2)!n!.Simplify the factorial: (n−2)!n!=n(n−1).Therefore, nC2=2n(n−1).It is given that nC2=15.So, 2n(n−1)=15.Multiply both sides by 2: n(n−1)=30.This gives n2−n−30=0.Factorise: (n−6)(n+5)=0.Hence, n=6 or n=−5.Since n must be a positive integer, n=6.Answer:n=6, so the correct option is C. 6.