Question:medium

Which of the following regular expressions denote a language comprising all possible strings of even length over the alphabet \(\{0,1\}\)?

Show Hint

To generate all even-length binary strings, think in pairs of symbols. The four possible pairs are \[ 00,\;01,\;10,\;11. \] Applying Kleene star to these pairs: \[ (00+01+10+11)^* \] produces every binary string whose length is \(0,2,4,6,\ldots\).
Updated On: Jun 25, 2026
  • \((0+1)^*\)
  • \((0+1)(0+1)^*\)
  • \((00+01+10+11)^*\)
  • \((0+1)(0+1)(0+1)^*\)
Show Solution

The Correct Option is C

Solution and Explanation

Was this answer helpful?
0