608 views
1 votes
1 votes

Let ⟨M⟩ be the encoding of a Turing machine as a string over Σ={0,1} Let L={⟨M⟩∣M is a Turing machine that accepts a string of length 2014}.

Then L is

  1. Recursively enumerable
  2. Not Recursively enumerable
  3. Recursive
  4. Udecidable 

(Multiple Options May be Correct . Mark them All )

1 Answer

Best answer
4 votes
4 votes
Let L={⟨M⟩∣M is a Turing machine that accepts a string of length 2014}

Take UTM and run all Strings using dovetailing method till 2014 length we can say Yes when alteast one of them accept but we cannot say no since thier are infinite strings to check . so Recursively enumerable (undecidable)(i.e. We cannot say no Only say yes.)
edited by

Related questions

0 votes
0 votes
1 answer
1
PEKKA asked Dec 5, 2016
338 views
L={ambnckdl | (n-k ) is odd only if (m-l) is odd , m,n,k,l >=0 } is best fit under which language classRLDCFLCFLCSL
1 votes
1 votes
1 answer
2
PEKKA asked Dec 5, 2016
316 views
The Java language is:A context free languageA context sensitive languageA regular languageParsable fully only by a Turing machine
3 votes
3 votes
1 answer
3
PEKKA asked Jan 2, 2017
575 views
f(n) = $\Theta (n^{2})$ g(n) = $\Omega (n)$ h(n)=O(log n) then [ f(n) . g(n) ] + [h(n) . f(n) ] is $\Omega (n)$$\Theta (n^{2})$O(log n)None
0 votes
0 votes
2 answers
4
PEKKA asked Dec 6, 2016
460 views
Complexity of the following snippet is for (i=1;i<n;++i) for(j=1;j<=n;j=j+i) c=c+1;