in Theory of Computation retagged by
1,097 views
3 votes
3 votes

$(00+01+10)(0+1)^*$ represents

  1. Strings not starting with $11$
  2. Strings of odd length
  3. Strings starting with $00$
  4. Strings of even length
in Theory of Computation retagged by
by
1.1k views

1 comment

I think option A is correct
0
0

2 Answers

2 votes
2 votes
A- is correct

B- not correct as strings like  $00,01,10$ are getting generated

C- not correct as strings like  $011,101$  are getting generated.

D- not correct as strings like  $000,001,100$ getting generated.
0 votes
0 votes

Although none of the options are right.  The closest answer is option A. 

The right r.e. for strings not starting with “11” is  ( 00+01+10)(0+1)* + 0 + 1+ $\varepsilon$

Answer:

Related questions