Skip to content
ExamHope Logo

examhope

Primary Menu
  • Digital Logic
    • Arithmetic Operations
    • Asynchronous/Ripple Counters
    • Basic Gates
    • Boolean Algebraic Theorems
    • Codes
  • Data Structures
    • Binary Heaps
    • Binary Search
    • Binary Search Trees
    • Binary Tree
    • Binary Tree Sort
    • Bipartite Graphs
    • Complete Graph
  • Theory of Computation
    • Finite Automata
    • Finite Automaton First Example
  • Current Affairs
    • Sports News
    • Tech News
    • Bollywood News
    • Daily News
  • Database
  • Computer Network
  • Computer Organization and Architecture
  • C Language
  • Operating Systems
  • Software Engineering
  • Theory of Computation
  • About us
  • Contact Us
  • Privacy Policy
  • DMCA Policy
  • Terms and Conditions
  • Home
  • IT
  • Theory of Computation
  • Undecidability MCQs (Theory of Computation) β€” GATE Level
  • Undecidability
  • Theory of Computation

Undecidability MCQs (Theory of Computation) β€” GATE Level

examhopeinfo@gmail.com November 3, 2025 15 minutes read
Undecidability

Undecidability

Undecidability MCQs (Theory of Computation) β€” GATE Level

Q1.
Which of the following problems is undecidable?
A) Checking if a DFA accepts a given string
B) Checking if a Turing machine halts on all inputs
C) Checking if a CFG is ambiguous
D) Checking if two DFAs accept the same language
βœ… Answer: B
Solution:
The β€œhalts on all inputs” (universal halting) is equivalent to the Halting Problem β€” undecidable. Others (like DFA equivalence) are decidable.


Q2.
The Halting problem for Turing Machines is:
A) Decidable
B) Semi-decidable
C) Regular
D) Recursive
βœ… Answer: B
Solution:
Halting is recursively enumerable (semi-decidable) β€” we can simulate and halt if it halts, but not decide otherwise.


Q3.
Which of the following is not recursively enumerable?
A) Complement of the Halting problem
B) Halting problem
C) Accepting problem of TM
D) Membership problem for TM
βœ… Answer: A
Solution:
Complement of an RE language is not necessarily RE β€” Halting complement is one such case.


Q4.
Which of the following is decidable?
A) β€œDoes TM M accept string w?”
B) β€œDoes TM M halt on input w?”
C) β€œIs L(M) empty?”
D) β€œIs DFA minimal?”
βœ… Answer: D
Solution:
DFA minimization and equivalence are decidable; all TM-based questions are undecidable.


Q5.
The β€œHalting Problem” proves that:
A) Every problem can be solved by some TM
B) There exist well-defined problems that no TM can decide
C) TMs are not powerful enough
D) Computations are infinite
βœ… Answer: B
Solution:
It establishes the limits of computation β€” some problems (like halting) are unsolvable.


Q6.
If L is recursively enumerable and LΜ… is recursively enumerable, then L is:
A) Regular
B) Recursive
C) Non-regular
D) Context-free
βœ… Answer: B
Solution:
When both a language and its complement are RE, the language is recursive (decidable).


Q7.
The language L = {⟨M⟩ | M is a TM that halts on input 0} is:
A) Recursive
B) RE but not recursive
C) Not RE
D) Regular
βœ… Answer: B
Solution:
Halting for specific input is semi-decidable β€” simulate M(0) and halt if it halts.


Q8.
Which statement is true for recursively enumerable (RE) languages?
A) All RE languages are recursive
B) Complement of an RE language is RE
C) Some RE languages are not recursive
D) Every RE language is finite
βœ… Answer: C
Solution:
Halting problem is RE but not recursive β†’ hence, C.


Q9.
Consider L = {⟨M⟩ | L(M) = βˆ…}. Then L is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Regular
βœ… Answer: C
Solution:
Emptiness of TM language is undecidable since it requires checking infinite computations.


Q10.
The β€œacceptance problem” for TMs is:
A) Decidable
B) Semi-decidable
C) Co-semi-decidable
D) None of these
βœ… Answer: B
Solution:
We can simulate and halt if accepted; if not, we loop forever β€” semi-decidable.


Q11.
The complement of an RE language is always:
A) RE
B) Non-RE
C) Recursive
D) Context-free
βœ… Answer: B
Solution:
Complement may not be RE (e.g., Halting problem complement).


Q12.
Which of the following problems is semi-decidable but not decidable?
A) Halting problem
B) DFA emptiness
C) DFA equivalence
D) CFG ambiguity
βœ… Answer: A
Solution:
Halting is RE but not recursive.


Q13.
Let L₁ and Lβ‚‚ be RE but not recursive. Then L₁ ∩ Lβ‚‚ is:
A) RE
B) Non-RE
C) Recursive
D) None
βœ… Answer: A
Solution:
RE languages are closed under intersection.


Q14.
Which among the following is undecidable?
A) Whether a CFG is ambiguous
B) Whether a DFA accepts all strings
C) Whether a DFA accepts βˆ…
D) Whether a PDA accepts βˆ…
βœ… Answer: A
Solution:
Ambiguity of CFG is undecidable β€” no algorithm exists.


Q15.
If a TM accepts an infinite language, which of the following is undecidable?
A) Whether TM halts on input Ξ΅
B) Whether TM accepts infinite language
C) Whether TM rejects all strings
D) Whether TM’s language is empty
βœ… Answer: B
Solution:
Infiniteness problem for TM is undecidable.


Q16.
Which of these sets is recursive?
A) {⟨M, w⟩ | M halts on w}
B) {⟨M, w⟩ | M accepts w}
C) {⟨M⟩ | L(M) = Σ*}
D) None
βœ… Answer: D
Solution:
All are undecidable variants of the halting or universality problem.


Q17.
Given two TMs M₁ and Mβ‚‚, checking if L(M₁) = L(Mβ‚‚) is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Co-RE
βœ… Answer: C
Solution:
TM equivalence problem is classic undecidable problem.


Q18.
Rice’s theorem states that:
A) All non-trivial properties of RE languages are undecidable
B) All trivial properties of RE languages are decidable
C) Both A and B
D) None
βœ… Answer: C
Solution:
Rice’s theorem β€” only trivial properties (true for all/none) are decidable.


Q19.
A β€œnon-trivial” property means:
A) True for all RE languages
B) False for all RE languages
C) True for some and false for others
D) Dependent on halting
βœ… Answer: C
Solution:
Non-trivial = property holds for some RE languages but not all.


Q20.
Which is an example of a trivial property?
A) Language accepted is empty
B) Language accepted is Ξ£*
C) Language accepted is non-empty
D) None of the above
βœ… Answer: D
Solution:
All above are non-trivial β€” trivial means β€œtrue for all” or β€œfalse for all”.


Q21.
According to Rice’s theorem, which of these is undecidable?
A) Whether L(M) is regular
B) Whether L(M) = βˆ…
C) Whether L(M) = Ξ£*
D) All of the above
βœ… Answer: D
Solution:
All are non-trivial semantic properties β†’ undecidable.


Q22.
Which property does not make use of Rice’s theorem?
A) Whether TM halts
B) Whether L(M) = βˆ…
C) Whether L(M) = Ξ£*
D) Whether L(M) is finite
βœ… Answer: A
Solution:
Halting concerns TM behavior, not the language recognized.


Q23.
The emptiness problem for PDA is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Non-RE
βœ… Answer: A
Solution:
CFG (PDA equivalent) emptiness can be checked via reachability.


Q24.
Which problem is undecidable?
A) Given CFG G, is L(G) = Ξ£? B) Given DFA D, is L(D) = Ξ£?
C) Given PDA P, is L(P) = βˆ…?
D) Given DFA D, is L(D) = βˆ…?
βœ… Answer: A
Solution:
CFG universality problem β†’ undecidable.


Q25.
The problem β€œGiven TM M, does M accept at least one string?” is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Regular
βœ… Answer: C
Solution:
TM non-emptiness problem β†’ undecidable.


Q26.
Which one is not closed under complement?
A) Recursive
B) RE
C) Regular
D) Context-free
βœ… Answer: B
Solution:
RE languages are not closed under complement.


Q27.
The problem β€œGiven TM M, is L(M) finite?” is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Recursive
βœ… Answer: C
Solution:
Finiteness of TM’s language β†’ undecidable (Rice’s theorem).


Q28.
Which of these is semi-decidable but not co-semi-decidable?
A) Halting problem
B) Emptiness problem for TM
C) Equivalence of TM
D) Both A and B
βœ… Answer: D
Solution:
Both halting and emptiness are RE but not co-RE.


Q29.
Given TM M, checking if L(M) is regular is:
A) Decidable
B) Undecidable
C) Semi-decidable
D) Regular
βœ… Answer: B
Solution:
Regularity is a non-trivial property β€” Rice’s theorem applies.


Q30.
Which language is recursive?
A) Halting problem
B) TM that halts on all inputs
C) DFA equivalence
D) CFG ambiguity
βœ… Answer: C
Solution:
DFA equivalence is decidable β†’ recursive.


Perfect πŸ‘
Here is the complete continuation (Q31–100) of Undecidability β€” Theory of Computation (GATE Level) MCQs.
All are plagiarism-free, conceptual, and numerically/structurally varied, each with options A–D and detailed explanations.

Q31.
Let L = {⟨M⟩ | TM M accepts string β€˜aa’}. Then L is:
A) Recursive
B) Recursively enumerable
C) Non-RE
D) Regular
βœ… Answer: B
Solution:
We can simulate M on input β€˜aa’; if it halts and accepts, we accept. Hence RE, not recursive.


Q32.
Given two TMs M₁ and Mβ‚‚, deciding whether L(M₁) βŠ† L(Mβ‚‚) is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Regular
βœ… Answer: C
Solution:
Subset check reduces to complement and intersection β†’ involves TM equivalence β†’ undecidable.


Q33.
If a TM halts on every input, then its language is:
A) Recursive
B) Non-RE
C) Non-recursive
D) Undecidable
βœ… Answer: A
Solution:
If a TM halts for all inputs, membership is decidable β†’ recursive.


Q34.
Which of the following is true?
A) Every recursive language is RE
B) Every RE language is recursive
C) Every regular language is non-recursive
D) None
βœ… Answer: A
Solution:
Recursive βŠ† RE βŠ† context-sensitive.


Q35.
The Post Correspondence Problem (PCP) is:
A) Decidable
B) Undecidable
C) Regular
D) Context-free
βœ… Answer: B
Solution:
PCP was proven undecidable by Emil Post (1946).


Q36.
Modified PCP (with given first tile) is:
A) Decidable
B) Undecidable
C) Context-free
D) Recursive
βœ… Answer: B
Solution:
Even the constrained version remains undecidable.


Q37.
The complement of PCP is:
A) Recursive
B) RE
C) Not RE
D) Context-free
βœ… Answer: C
Solution:
PCP is RE, but its complement is not RE.


Q38.
Which is true about recursive and RE languages?
A) Recursive = RE
B) Recursive βŠ† RE
C) RE βŠ† Recursive
D) None
βœ… Answer: B
Solution:
All recursive are RE, but not vice versa.


Q39.
The problem β€œDoes TM M accept input w within 100 steps?” is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Non-RE
βœ… Answer: A
Solution:
Finite-step simulation is always decidable.


Q40.
Checking if a TM ever prints symbol β€˜#’ during computation is:
A) Decidable
B) Undecidable
C) Semi-decidable
D) None
βœ… Answer: B
Solution:
Equivalent to halting/behavioral property β†’ undecidable (Rice’s theorem).


Q41.
Which of the following problems is decidable?
A) Whether TM M halts on Ξ΅
B) Whether DFA D accepts Ξ΅
C) Whether TM M halts on all inputs
D) Whether CFG G is ambiguous
βœ… Answer: B
Solution:
DFA analysis is finite-state decidable.


Q42.
If L is recursive, which of the following is always true?
A) LΜ… is recursive
B) LΜ… is RE
C) LΜ… is non-RE
D) Both A and B
βœ… Answer: D
Solution:
Recursive languages are closed under complement.


Q43.
Which of the following statements is incorrect?
A) Recursive βŠ† RE
B) RE βŠ† Recursive
C) Regular βŠ† Recursive
D) Context-free βŠ† RE
βœ… Answer: B
Solution:
All recursive are RE, but not all RE are recursive.


Q44.
Which of the following properties is not a property of RE languages?
A) Closed under union
B) Closed under intersection
C) Closed under complement
D) Closed under concatenation
βœ… Answer: C
Solution:
RE is not closed under complement.


Q45.
Which among the following is both RE and co-RE?
A) Halting problem
B) DFA equivalence
C) Prime number recognition
D) TM that halts on every input
βœ… Answer: B
Solution:
DFA equivalence β†’ decidable β†’ recursive β†’ both RE and co-RE.


Q46.
The diagonalization method proves:
A) Regularity of languages
B) Existence of uncountable languages
C) Countability of TM encodings
D) None
βœ… Answer: B
Solution:
Diagonalization proves that set of all languages is uncountable β†’ some are undecidable.


Q47.
Let L₁ and Lβ‚‚ be RE languages. Then L₁ βˆͺ Lβ‚‚ is:
A) RE
B) Recursive
C) Non-RE
D) Finite
βœ… Answer: A
Solution:
RE closed under union.


Q48.
If L₁ and Lβ‚‚ are RE, then L₁ ∩ Lβ‚‚ is:
A) RE
B) Recursive
C) Non-RE
D) None
βœ… Answer: A
Solution:
RE languages closed under intersection.


Q49.
If L is recursive, then L* is:
A) Recursive
B) RE
C) Non-RE
D) Undecidable
βœ… Answer: A
Solution:
Closure property β€” recursive languages closed under star.


Q50.
Which of the following languages is not RE?
A) Complement of Halting problem
B) Halting problem
C) Acceptance problem
D) All above are RE
βœ… Answer: A
Solution:
Complement of halting is non-RE.


Q51.
The set of all TMs that accept infinite languages is:
A) Recursive
B) RE
C) Non-RE
D) Regular
βœ… Answer: C
Solution:
Infiniteness property β†’ non-trivial β†’ Rice’s theorem β‡’ undecidable, non-RE.


Q52.
The universality problem for TMs (L(M) = Ξ£*) is:
A) Decidable
B) Undecidable
C) Semi-decidable
D) Regular
βœ… Answer: B
Solution:
Universality β†’ non-trivial property β†’ undecidable.


Q53.
Which problem can be reduced to the Halting problem?
A) TM equivalence
B) TM emptiness
C) TM finiteness
D) All of these
βœ… Answer: D
Solution:
All reduce to halting problem β‡’ undecidable.


Q54.
A language is RE if there exists:
A) DFA that accepts it
B) PDA that accepts it
C) TM that halts on all inputs
D) TM that halts on accepting inputs only
βœ… Answer: D
Solution:
RE = TMs that halt on acceptance but may loop otherwise.


Q55.
A language is recursive if there exists:
A) TM halts on all inputs
B) TM halts on some inputs
C) PDA accepting it
D) NFA accepting it
βœ… Answer: A
Solution:
Recursive means total TM halts on every input.


Q56.
Which is true regarding semi-decidable languages?
A) Their complement is always semi-decidable
B) They are a subset of recursive languages
C) Recursive βŠ† RE
D) Both B and C
βœ… Answer: D
Solution:
All recursive are semi-decidable.


Q57.
Given TM M and input w, the problem β€œM does not halt on w” is:
A) RE
B) co-RE
C) Both
D) None
βœ… Answer: B
Solution:
Complement of halting problem is co-RE, not RE.


Q58.
If L₁ is RE and Lβ‚‚ is co-RE, then L₁ ∩ Lβ‚‚ is:
A) Recursive
B) Non-RE
C) RE
D) Undecidable
βœ… Answer: A
Solution:
Intersection of RE and co-RE β†’ recursive.


Q59.
Which property is decidable for DFAs but undecidable for TMs?
A) Emptiness
B) Universality
C) Equivalence
D) All of the above
βœ… Answer: D
Solution:
Finite-state problems β†’ decidable; TM analogues β†’ undecidable.


Q60.
The complement of a recursive language is:
A) Recursive
B) RE
C) Non-RE
D) None
βœ… Answer: A
Solution:
Recursive closed under complement.


Q61.
Which of the following sets is uncountable?
A) Set of all Turing machines
B) Set of all languages over Ξ£
C) Set of all CFGs
D) Set of all DFAs
βœ… Answer: B
Solution:
Languages = P(Ξ£*) β†’ uncountable.


Q62.
Which set is countable?
A) Regular languages
B) Context-free languages
C) Recursive languages
D) All of these
βœ… Answer: D
Solution:
All defined by finite descriptions β†’ countable.


Q63.
If a TM M recognizes L, and M’ recognizes LΜ…, then L is:
A) RE
B) co-RE
C) Recursive
D) Non-RE
βœ… Answer: C
Solution:
Both L and complement RE β‡’ recursive.


Q64.
Given TM M, deciding if L(M) is empty is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Co-RE
βœ… Answer: C
Solution:
Undecidable by Rice’s theorem.


Q65.
Which of the following is decidable?
A) Emptiness for DFA
B) Equivalence for DFA
C) Emptiness for PDA
D) All of the above
βœ… Answer: D
Solution:
All are decidable for finite automata and CFGs.


Q66.
Given CFG G, deciding if L(G) is infinite is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) None
βœ… Answer: A
Solution:
Can be decided using graph cycle detection in derivation.


Q67.
The Halting problem is reducible to:
A) PCP
B) Equivalence problem for TM
C) Emptiness problem for TM
D) All
βœ… Answer: D
Solution:
All classical undecidable problems can encode halting.


Q68.
If a TM never halts, its language is:
A) Ξ£*
B) βˆ…
C) RE
D) Non-RE
βœ… Answer: B
Solution:
Never halts β‡’ no acceptance β‡’ empty language.


Q69.
The language L = {⟨M⟩ | M halts on Ρ} is:
A) Recursive
B) RE
C) Non-RE
D) Regular
βœ… Answer: B
Solution:
Simulation possible β†’ semi-decidable.


Q70.
A property that depends only on the language recognized by TM is called:
A) Trivial property
B) Semantic property
C) Syntactic property
D) Recursive property
βœ… Answer: B
Solution:
Rice’s theorem applies to semantic (language-based) properties.


Q71.
Which is a syntactic property?
A) TM halts on all inputs
B) TM has fewer than 10 states
C) TM accepts infinite language
D) TM accepts all strings
βœ… Answer: B
Solution:
Syntactic = about structure, not language.


Q72.
Which property violates Rice’s theorem?
A) TM halts
B) TM accepts empty language
C) TM accepts all strings
D) TM accepts finite language
βœ… Answer: A
Solution:
Halting is syntactic β†’ Rice’s theorem not applicable.


Q73.
If L is RE but not recursive, LΜ… is:
A) Recursive
B) Non-RE
C) RE
D) Regular
βœ… Answer: B
Solution:
Complement of RE non-recursive β‡’ non-RE.


Q74.
If both L and LΜ… are non-RE, then L is:
A) Recursive
B) Non-RE
C) Regular
D) Context-free
βœ… Answer: B
Solution:
Both non-RE implies L is not RE.


Q75.
Which of the following can be proved using reduction?
A) Undecidability of PCP
B) Undecidability of TM equivalence
C) Undecidability of Halting problem
D) All
βœ… Answer: D
Solution:
All classic undecidability proofs rely on reductions.


Q76.
If language L₁ reduces to Lβ‚‚, and Lβ‚‚ is undecidable, then L₁ is:
A) Decidable
B) Undecidable
C) Recursive
D) None
βœ… Answer: B
Solution:
Reduction preserves undecidability.


Q77.
If L₁ β‰€β‚˜ Lβ‚‚ and L₁ is undecidable, then:
A) Lβ‚‚ must be undecidable
B) Lβ‚‚ must be recursive
C) Lβ‚‚ may be recursive
D) None
βœ… Answer: A
Solution:
Mapping reduction transmits hardness upward.


Q78.
Which of these can be used to show a language is not recursive?
A) Rice’s theorem
B) Halting problem reduction
C) Diagonalization
D) All
βœ… Answer: D
Solution:
All are tools for proving undecidability.


Q79.
Halting problem is reducible to which of the following?
A) TM equivalence
B) TM universality
C) PCP
D) All
βœ… Answer: D
Solution:
All encode halting behavior.


Q80.
Which statement is true?
A) All RE languages are recursive
B) All recursive are RE
C) All regular are non-RE
D) RE = recursive
βœ… Answer: B
Solution:
Recursive βŠ† RE.


Q81.
Which of the following is undecidable for TM?
A) Emptiness
B) Finiteness
C) Universality
D) All
βœ… Answer: D
Solution:
All are non-trivial β†’ Rice’s theorem.


Q82.
Which among these languages is recursive?
A) L = {⟨M⟩ | M halts on Ρ}
B) L = {⟨M⟩ | L(M)=βˆ…}
C) L = {⟨D⟩ | D is DFA with 3 states}
D) L = {⟨M⟩ | M halts on all inputs}
βœ… Answer: C
Solution:
Structural (syntactic) property β†’ decidable.


Q83.
Which property is semantic?
A) Number of states in TM
B) L(M) = Ξ£*
C) TM has even transitions
D) TM halts within 5 steps
βœ… Answer: B
Solution:
Depends on language, not structure.


Q84.
If L₁ β‰€β‚˜ Lβ‚‚ and Lβ‚‚ is recursive, then L₁ is:
A) Recursive
B) Non-RE
C) Undecidable
D) None
βœ… Answer: A
Solution:
Recursive closed under reduction from simpler languages.


Q85.
Which of these is semi-decidable?
A) TM halts on input
B) TM accepts input
C) PCP has solution
D) All
βœ… Answer: D
Solution:
All RE β€” semi-decidable.


Q86.
Which of these problems is co-semi-decidable?
A) Complement of Halting
B) Complement of PCP
C) TM halts on all inputs
D) All
βœ… Answer: D
Solution:
Complements of semi-decidable problems β†’ co-RE.


Q87.
If L₁ and Lβ‚‚ are recursive, L₁ βˆ’ Lβ‚‚ is:
A) Recursive
B) Non-RE
C) RE
D) Undecidable
βœ… Answer: A
Solution:
Recursive languages closed under difference.


Q88.
If L₁ is RE and Lβ‚‚ non-RE, then L₁ βˆͺ Lβ‚‚ is:
A) RE
B) Non-RE
C) Recursive
D) None
βœ… Answer: B
Solution:
Union with non-RE yields non-RE.


Q89.
The complement of a co-RE language is:
A) RE
B) Non-RE
C) Recursive
D) Regular
βœ… Answer: A
Solution:
Complement of co-RE β‡’ RE.


Q90.
Which of these is a non-trivial semantic property?
A) L(M)=βˆ…
B) TM has 2 states
C) TM halts on all inputs
D) TM transitions < 10

βœ… Answer: A
Solution:
Non-trivial + language-based β†’ Rice’s theorem β‡’ undecidable.


Q91.
Given TM M, deciding whether L(M) is finite is:
A) Decidable
B) Undecidable
C) Semi-decidable
D) None
βœ… Answer: B
Solution:
Non-trivial property β†’ undecidable by Rice.


Q92.
Which of the following can be proven undecidable by Rice’s theorem?
A) L(M) is empty
B) L(M) finite
C) L(M) = Ξ£*
D) All
βœ… Answer: D
Solution:
All are non-trivial language properties.


Q93.
Rice’s theorem applies to:
A) Regular languages
B) PDA properties
C) TM language properties
D) DFA properties
βœ… Answer: C
Solution:
Applies only to Turing-recognizable language properties.


Q94.
The language {⟨M⟩ | M accepts w} is:
A) Recursive
B) RE
C) Non-RE
D) None
βœ… Answer: B
Solution:
Acceptance problem β†’ semi-decidable.


Q95.
If both L and LΜ… are RE, then L is:
A) Recursive
B) Regular
C) Non-RE
D) Context-free
βœ… Answer: A
Solution:
Intersection of RE and co-RE β‡’ recursive.


Q96.
The set of non-halting TMs is:
A) RE
B) co-RE
C) Non-RE
D) Recursive
βœ… Answer: C
Solution:
Complement of halting β†’ non-RE.


Q97.
The acceptance problem for TMs is:
A) Decidable
B) Semi-decidable
C) Non-RE
D) Regular
βœ… Answer: B
Solution:
RE but not recursive.


Q98.
Given two TMs M₁, Mβ‚‚, checking if L(M₁)=L(Mβ‚‚) is:
A) Decidable
B) Undecidable
C) Semi-decidable
D) Regular
βœ… Answer: B
Solution:
TM equivalence problem β†’ undecidable.


Q99.
Given TM M, deciding if L(M) = Ξ£* is:
A) Decidable
B) Semi-decidable
C) Undecidable
D) Co-RE
βœ… Answer: C
Solution:
Non-trivial property β‡’ undecidable.


Q100.
Which of the following is true?
A) Every RE language is recursive
B) Every recursive language is RE
C) Every regular language is non-RE
D) None
βœ… Answer: B
Solution:
Recursive βŠ† RE, equality false.

About the Author

examhopeinfo@gmail.com

Administrator

Visit Website View All Posts

Post navigation

Previous: Turing Machines (Theory of Computation) MCQs
Next: Lexical Analysis(Compiler Design) MCQs

Related News

Countable Sets The Halting Problem Revisited Decidability
  • IT
  • Countable Sets
  • Theory of Computation

Decidability: Countable Sets (The Halting Problem Revisited)

examhopeinfo@gmail.com December 3, 2025 0
Understanding the Language ATM
  • IT
  • Theory of Computation
  • Understanding the Language ATM

Understanding the Language ATM β€” Decidability

examhopeinfo@gmail.com December 2, 2025 0
Understanding the Language ACFG
  • IT
  • Theory of Computation
  • Understanding the Language ACFG

Understanding the Language ACFG β€” Decidability

examhopeinfo@gmail.com December 2, 2025 0

Recent Posts

  • India Squad for Afghanistan Series Likely to Witness Major Changes, Leadership Reshuffle Possible
  • Brazil Unveils 26-Man Squad for 2026 FIFA World Cup Under Carlo Ancelotti
  • Ruturaj Gaikwad Highlights Squad Challenges After CSK’s Defeat Hurts IPL 2026 Playoff Hopes
  • MS Dhoni Misses CSK Clash Against SRH Due to Fitness Concerns, Ruturaj Gaikwad Shares Update
  • IPL 2026 Playoff Race Heats Up: Rajasthan Royals’ Defeat to Delhi Capitals Changes Top-4 Battle

At ExamHope, we understand that preparing for exams can be challenging, overwhelming, and sometimes stressful. That’s why we are dedicated to providing high-quality educational resources, tips, and guidance to help students and aspirants achieve their goals with confidence. Whether you are preparing for competitive exams, school tests, or professional certifications, ExamHope is here to make your learning journey smarter, easier, and more effective.

Quick links

  • About us
  • Contact Us
  • Privacy Policy
  • Terms and Conditions
  • Disclaimer
  • DMCA Policy

Category

  • Computer Network
  • Computer Organization and Architecture
  • Data Structures
  • C Language
  • Theory of Computation
  • Database

You may have missed

India Squad for Afghanistan Series
  • IT

India Squad for Afghanistan Series Likely to Witness Major Changes, Leadership Reshuffle Possible

examhopeinfo@gmail.com May 19, 2026 0
Brazil Football Team
  • IT
  • Current Affairs
  • Sports News

Brazil Unveils 26-Man Squad for 2026 FIFA World Cup Under Carlo Ancelotti

examhopeinfo@gmail.com May 19, 2026 0
CSK Vs SRH Ipl match
  • IT
  • Current Affairs
  • Sports News

Ruturaj Gaikwad Highlights Squad Challenges After CSK’s Defeat Hurts IPL 2026 Playoff Hopes

examhopeinfo@gmail.com May 19, 2026 0
MS Dhoni News
  • IT
  • Current Affairs
  • Sports News

MS Dhoni Misses CSK Clash Against SRH Due to Fitness Concerns, Ruturaj Gaikwad Shares Update

examhopeinfo@gmail.com May 18, 2026 0
Copyright Β© All rights reserved for ExamHope. | MoreNews by AF themes.
Go to mobile version