
Learn core concepts, essential formulas, and attempt practice questions designed on the latest TCS NQT testing patterns.
In how many ways can a committee of 3 members be selected from a group of 5 people?
Correct Answer: A) 10
Step-by-step Solution: Use combinations selection: 5C3 = 5! / (3! * 2!) = (5 * 4) / 2 = 10.
How many different 4-letter words can be formed from letters of the word 'BLUE'?
Correct Answer: A) 24
Step-by-step Solution: The word has 4 distinct letters. Number of arrangements = 4! = 4 * 3 * 2 * 1 = 24.
Use combinations (nCr) for choosing, and permutations (nPr) when order of arrangement matters.