1,222 views
2 votes
2 votes

in this b,c,d all are true .how can we find the appropriate one ?

2 Answers

Best answer
1 votes
1 votes
option a] from (0+1)* ,strings like 001 or 0000..01 is recognized by m/c, so it is incorrect.

option b] from (0+1)*, strings like 101 or 011 or 0011 is not recognize by m/c, so it is incorrect.

option c] from (0+1)*, strings like empty, 0 and 1 do not have 11 as substring, still not accepted by the m/c, so incorrect.

option d] every string which is recognized by m/c will have atleast two 0's and atmost one 1's means that 00 or oooo1 or oo1o etc are accepted. so it could be correct.
selected by
2 votes
2 votes

C) will be ans

Here we need to find optimized one

A)10 is not a valid string. So,every 1 in w followed by a 0 not correct option

B)10 not a valid string.So, Every string w starts with 10 is not give correct ans

D)00 is accepted here, So, w contains atleast two 0s and atmost one 1 is not corrct option

Related questions

0 votes
0 votes
1 answer
1
Akash Mishra asked Sep 11, 2017
1,143 views
Is this language L accepted by a Turing Machine?L = a1n a2n a3n a4n .........amn || m,n 0Also, what about this language?L = a1n a2n a3n a4n .........ann || n 0
0 votes
0 votes
0 answers
2
sripo asked Jan 5, 2019
544 views
As per the given solution,B should be the correct answer right why is D given as the correct answer as the machine accepts atleast one b.
0 votes
0 votes
1 answer
4
$ourav asked May 7, 2016
361 views
S → S0S1S0S | S0S0S1S | S1S0S0S | ϵ