Question:medium

A student has to answer a multiple-choice question having 5 alternatives in which two or more than two alternatives are correct. Then the number of ways in which the student can answer that question is

Show Hint

For problems involving "at least \( k \) items", it is often faster to calculate the total number of combinations (\( 2^n \)) and subtract the cases with fewer than \( k \) items.
Updated On: Apr 4, 2026
  • 31
  • 30
  • 27
  • 26
Show Solution

The Correct Option is D

Solution and Explanation

Step 1: Understanding the Concept:
The problem asks for the number of possible valid answers a student can submit. The condition given is that "two or more than two alternatives are correct". This implies that a valid answer must consist of a selection of at least 2 options out of the 5 available.
Step 2: Key Formula or Approach:
The total number of ways to select subsets of options is \( 2^n \). We need to subtract the cases that do not satisfy the condition (selecting 0 or 1 option).
Formula: \( \sum_{r=k}^{n} \binom{n}{r} = 2^n - \sum_{r=0}^{k-1} \binom{n}{r} \).
Step 3: Detailed Explanation:
Let the 5 alternatives be \( A, B, C, D, E \). The total number of possible subsets of answers is \( 2^5 = 32 \). The student knows that the correct answer consists of 2 or more alternatives. Therefore, the student can answer by choosing any combination of 2, 3, 4, or 5 options.
The invalid cases are:
1. Choosing 0 options (Blank answer): \( \binom{5}{0} = 1 \) way.
2. Choosing exactly 1 option: \( \binom{5}{1} = 5 \) ways.
The number of valid ways to answer is: \[ \text{Total ways} - (\text{Ways with 0 or 1 option}) \] \[ = 2^5 - \left( \binom{5}{0} + \binom{5}{1} \right) \] \[ = 32 - (1 + 5) \] \[ = 32 - 6 = 26 \]
Step 4: Final Answer:
The number of ways is 26.
Was this answer helpful?
0