Please wait...

Theory of Computation Test 2
Result
Theory of Computation Test 2
  • /

    Score
  • -

    Rank
Time Taken: -
  • Question 1/25
    2 / -0.33

    Consider the languages L1 = Φ and L2 ={a}. Which one of the following represents L1L2L1?
    Solutions

    Concepts

    L=L0L1L2L3L4.LkLk+1

    For any language L0=ϵ

    Concatenation of Φ with any other language is Φ. It works as 0 in multiplication.

    And for Lk=L.L.L.L.L.L.LL language is concatenated K- times.

    Data:

     L1 = Φ, L2 = {a}

    Calculation:

    L1L2L1=?

    L1 concatenated with L2 and whole thing union with L1.

    First L1=ϕ0ϕ1ϕ2  =ϵϕϕ={ϵ}.

    Similarly, L2={a}0{a}1{a}2=ϵ{a}{aa}..=a

    L1L2L1=Φa{ϵ}={ϵ}

  • Question 2/25
    2 / -0.33

    Let L be the set of all strings of a’s and b’s where every string starts and ends with the same symbol. The number of states in the minimum state DFA accepting L is
    Solutions

    DFA:

    Number of states is 4

  • Question 3/25
    2 / -0.33

    For x ϵ (0 + 1)* Let L = { x ϵ (0 + 1)* | dec(s) mod 7 = 1 and dec(s) mod 11 = 3 } where dec(7) = 111 since d(s) denotes the decimal value.

    Which one of the following statements is true?

    Solutions

    Let L1 = dec(s) mod 7 = 1 and L2 = dec(s) mod 11 = 3

    L1 and L2 both are regular language

    L = L1 ∩ L2

    Regular language is closed under intersection

    Therefore, L is regular.

  • Question 4/25
    2 / -0.33

    Consider the following grammar:

    S → 0A|0BB

    A → 00A|λ

    B → 1B|11C

    C → B

    Which language does this grammar generate?

    Solutions

    Given grammar is generating string of type: {0, 000, 00000,0000000…...}

    1) L((00) * 0 + (11) * 1)

    This language generating string with combination of 0’s and 1’s. But given grammar is not generating any string composed of 1’s.

    2) L(0(11) * + 1(00) * )

    This language is not generating string which contains three 0’s together. Also, it is generating strings which contains 1 in it. So, it is not correct option.

    3) L((00) * 0)

    It is generating strings of type: {0, 03, 05, 07,.}. These set of strings is similar to the one generating from given grammar. So, this language is generated by given grammar.

    4) L(0(11) * 1)

    It is incorrect because it is generating strings which contains 1 which is not the case with given grammar. 

  • Question 5/25
    2 / -0.33

    Consider the following ε – NFA

    Find the cardinality of epsilon closure of state S ?

    Solutions

    ε closure: ε closure of any state means with the help of ε (0 length) from that state, how many new state we can reach. To find ε closure, the state is itself in it's closure.

    Cardinality of ε closure: | ε closure(state) | or No. of elements in the set of ε closure.

    ε closure of state ‘S’ = { S, T, A, E } as S is starting state and T, A, E are reachable with the help of ε .

    Hence, Cardinality of epsilon closure of state ‘S’ = 4

    Topic: Context Free Grammar (CFG)

  • Question 6/25
    2 / -0.33

    If any string of a language L can be effectively enumerated by an enumerator in a lexicographic order, then language L is _______
    Solutions

    Concept:

    Language that is accepted by Turing machine is known as recursive enumerable language.

    Explanation:

    Turing machine accepts the language which can enumerate all the valid strings and reject all invalid strings.

    Here it is given that if any string of a language L can be effectively enumerated by an enumerator in lexicographic order, it means if Turing machine accepts the string, it halts in the final state. If it does not accept the string, then it halts in a non-final state. It means language is recursive. A recursive language is also recursive enumerable.
  • Question 7/25
    2 / -0.33

    If a Context Free Grammar G is in Chomsky Normal Form, to derive a string of length 101 number of productions needed is _____.
    Solutions

    Concepts:

    A context-free grammar is in Chomsky Normal Form if all productions are of the form

    A → BC or A → a

    {A, B, C} ϵ V and a ϵ T

    V is variable(non-terminal) and a is terminal

    Data:

    x = 101

    n → number of productions required to generates string of length x.

    Formula:

    n = 2x – 1

    where x is the length of the string

    Calculation:

    n = 2(101) – 1

    ∴ n = 201
  • Question 8/25
    2 / -0.33

    Consider the following context-free grammar:

    S → AB

    A → aAb/ab

    B → cBd/cd

    Which of the following languages is generated by the given grammar?

    Solutions

    S → AB

    S → aAbB

    S → aaAbbB

    S → aaaAbbbB

    .

    .

    .

    S → anbncBd

    S → anbnccBdd

    S → anbncccBddd

    .

    .

    .

    S → anbncmdm 

    Therefore, the language produced will be anbncmdm / n, m >= 1.

  • Question 9/25
    2 / -0.33

    The number of two states DFA can be constructed with a designated initial state and a designated final state over the alphabet ∑ = {x, y} is _____.
    Solutions

    Let q0 and q1 be the two states

    Let designated initial state be q0 and designated final state be q1

    Transition Table:

     

    x

    y

    → q0

    q0/ q1

    q0/ q1

    *q1

    q0/ q1

    q0/ q1

     

    Explanation:

    In initial state (q0), on seeing x, it can go to q0 or q1. Similarly, on seeing y it can go to q0 or q1

    In final state (q0), on seeing x, it can go to q0 or q1. Similarly, on seeing y it can go to q0 or q1

    Number of DFA possible = 2 × 2 × 2 × 2 = 16

  • Question 10/25
    2 / -0.33

    The string 1101 does not belong to the set represented by:
    Solutions

    Option 1: (00 + (11)*0)

    This regular expression generates the strings like:

    {0, 00, 000, 110, 11011, 11110, 11000, …} .

    It is not generating 1101 because after every 11 there is a single 0 possible but a single 1 is not possible in any case.

    Option 2: 1(0 + 1)*101

    It is generating strings of type: {1101, 10101, 11101, 101101, ………}.

    It contains the string 1101, so not the correct answer.

    Option 3: (10)* (00 + 11)* (01)*

    This regular expression is generating strings of type: {ϵ, 10, 00, 11, 01, 1000, 1011, 1001, 1101…….}.

    It is possible to get 1101 in this expression. So, it is the not correct answer.

    Option 4: 110*(0 + 1)

    In this, set of strings that are possible are: {110, 111, 1100, 1101, 11001,……..}.

    So it is generating the string 1101. So, it is not the correct answer.
  • Question 11/25
    2 / -0.33

    Consider the following languages:

    L1={anbncm}{anbmcm},n,m0

    L2={wwR|w{a,b}} Where R represents reversible operation.

    Which one of the following is (are) inherently ambiguous language(s)?
    Solutions

    Concept:

    Inherently ambiguous language: A context free language is inherently ambiguous if every context free grammar for that language is ambiguous.

    Explanation:

    If we get any one unambiguous grammar for each of the option given above, then that language will not be inherently ambiguous.

    Case 1:

    L1={anbncm}{anbmcm},n,m0

    This is inherently ambiguous language. There does not exist any unambiguous grammar for this. It is somewhat similar to the language L = {aibjck | i = j or j = k} . It has a common subset anbncn.

    L2={wwR|w{a,b}} Where R represents reversible operation.

    This is not inherently ambiguous language. An unambiguous grammar exists for it:

    S -> aSa | bSb |  λ

  • Question 12/25
    2 / -0.33

    Which productions should be added in the following context-free grammar to get a set of all palindromes over the input {0,1}?

    P → ε

    P  → 0P0

    P → 1P1

    Solutions

    The palindromes are a set of strings that read the same backward as forward. 

    The inclusion of the productions P → 0, P → 1 includes the strings 0 and 1 which are palindromes in themselves. Also, these productions can be used to generate the odd length palindromes. 

    Using production P → ε, even length palindromes can be generated.

  • Question 13/25
    2 / -0.33

    Which one of the following languages over Σ = {a, b} is/are context-free?

    Solutions
    • {wanbnwR |w ϵ {a, b}*, n ≥ 0} is accepted by a non-deterministic pushdown automaton and hence it is a context-free language
    • {wwR |w ϵ {a, b}*} is accepted by a non-deterministic pushdown automaton and hence it is context-free language.
    • {wanwRbn|w ϵ {a, b}*, n ≥ 0} is not accepted by a pushdown automaton and hence it is not a context-free language.
    • i = n, 2n, 3n, 4n, etc. forms and arithmetic series. anbn, anb2n and anb3n is accepted by a deterministic pushdown automaton and context-free language are closed under union and hence anbn ∪ anb2n ∪ anb3n is a context-free language. Hence {anb|i ϵ {n, 3n, 5n}, n ≥ 0} is a context-free language.
  • Question 14/25
    2 / -0.33

    Let the minimum state DFA accepting the language L1 = {x| x ϵ {p, q}* } in which number of p’s and q’s in x are divisible by 10 and 15 be n and the minimum number of state DFA accepting the language L2 = { w | w ϵ {a}* } in which a is divisible by 10 and 15 be y. The value of x – y is _____.

    Solutions
    • In L1, p’s in the string x should be divisible by 10 (N(p) % 10 = 0), and the number of q’s in the string x should be divisible by (N(q) % 15) = 0).Therefore, x = (10 × 15) = 150 states will be needed to minimum DFA accepting the given language
    • In L2, a’s in the string x should be divisible by 10 and 15 (N(a) % 10 = 0 and N(a)%15). In the case of the same symbol, LCM is taken. Therefore, y = LCM(10, 15) = 30 states will be needed to minimum DFA accepting the given language.

    Therefore, value = x – y = 150 – 30 = 120 

  • Question 15/25
    2 / -0.33

    Consider the following Turing machine:

    Note: (p, q, r) represents that by reading input 'p', it replaces 'p' by 'q' and moves to 'r' direction. Which of the following languages is accepted by the above Turing machine?

    Solutions

    The given Turing machine performs the following:

    (a) If the leftmost symbol in the given input string w is 0, it is replaced by x and moved right till a leftmost 1 is encountered in w. It is changed to 'y' and moved backwards.

    (b) Step (a) is repeated with the leftmost 0. When no 0 or 1 is left, it is moved to a final state.

    Therefore, the sequence which is printed is of the form 0n1n.

    Hence, option 1 is the correct answer.

  • Question 16/25
    2 / -0.33

    Which of the following language is decidable?

    Solutions

    undecidable

    Whether a Turing Machine accepts a given language (here, L(M) = { 00, 11 } ) is Non-trivial question, so by Rice’s theorem it is Undecidable problem.

    So, {M | M is a Turing Machine and L(M) = { 00, 11 } } is Undecidable.

    Option 2: decidable

    For an input whose length is less than 200 on which Turing machine halts or not can be decidable by running Turing machine for 200 steps.

    So, { M | M is a Turing Machine and there exists an input whose length is less than 200, on which M halts } is Decidable.

    Option 3: decidable

    { M | L(M)  is recognized by a Turing Machine having even number of states }

    This is a Trivial property because for any recursively enumerable language we have a TM and even if that TM is having odd number of states we can make an equivalent TM having even number of states by adding one extra state. Thus, this set equals the set of recursively enumerable languages and hence Decidable.

    Option 4: decidable

    If language L is in NP class, then L is Turing Decidable (Recursive) because NP class is the subset of recursive.

    Also, P NP Recursive (Turing Decidable) .

    Important Theorem:

    Rice’s Theorem - 

    • Any “non-trivial” (answer not known) property of the language recognizable by a Turing machine (recursively enumerable language) is Undecidable.
    • Any “trivial” property is always Decidable because the decision is known ahead and that is why the property is trivial.
  • Question 17/25
    2 / -0.33

    Which of the following are not context free?

    L1: { an bm ak | k = mn and k, m, n ≥ 1 }

    L2: { am + n bn + m cm | n, m ≥ 1 }

    L3: { an bn cm | m < n and m, n ≥ 1 }

    Solutions

    L1 : { an bm ak | k = mn and k, m, n ≥ 1 } is not CFL, since we cannot implement multiplication of 2 variables with single stack.

    L2 : { am + n bn + m cm | n, m ≥ 1 } is not CFL, since here more than 1 comparison on single variable( ‘m’ ) present. Hence cannot be implement by single stack.

     L3 : { an bn cm | m < n and m, n ≥ 1 } is not CFL, since more than 1 comparison are present simultaneously i.e, after comparison of n = n, we left with cm and we cannot compare m < n or not.

    So, All language is not CFL i.e, L1 , L2 and L3 are not context free.

  • Question 18/25
    2 / -0.33

    The language accepted by given PDA is ?

    δ (q0 , b , z0 ) = ( q0 , x z0 )

    δ (q0 , b , x ) = ( q0 , x x )

    δ (q0 , a , x ) = ( q1 , x )

    δ (q0 , ε , z0 ) = ( q0 , ε )

    δ (q1 , b , x ) = ( q1 , ε )

    δ (q1 , a , z0 ) = ( q0 , z0 )

    Solutions

    Given PDA can be drawn as – 

    Procedure:

    • For ‘b’, we are pushing ‘x’, and for subsequent ‘b’ we are also pushing ‘x’.  (no. of ‘b’ = no. of ‘x’)
    • When ‘a’ comes, it will not pop ‘x’, but it will be skip.
    • When again ‘b’ comes, it will pop ‘x’ for every ‘b’
    • When ‘a’ comes, it will again skip.
    • There is a loop in the PDA, so above 4 steps will repeat one after another.


    We will get, L = bpabpa bqabqa brabra……

    General Form: L = { (bnabna)m | m,n ≥ 0 }

  • Question 19/25
    2 / -0.33

    Let A be a recursively enumerable language which is not recursive and A’ be its complement, also B be recursive language and B’ be its complement. Let X and Y be two languages such that A’ reduces to X and Y reduces to B’ and the reduction is many to one. Which of the following is/are true?

    Solutions
    • If B is recursive language (REC) then B’ is also REC and recursive language is decidable. Y reduces to B Since B is decidable then Y is also decidable and decidable languages are recursive.
    • A is recursively enumerable language (REL) but not REC and hence A’ is also not REL. Since A’ reduces to X then X is also not REL.
  • Question 20/25
    2 / -0.33

    Recursive languages are closed under which of the following operations?

    I. Union

    II. Complement

    III. Concatenation

    IV. Kleene star

    Solutions

    .Concept:

    Recursive languages are closed under Union, Complement,  Concatenation and Kleene star

    Explanation

    Let L1 and L2 be recursive languages.

    • L1L2

    → Recursively enumerable languages are under union operation, hence L1L2  is recursive

    • L1

    → Recursive languages are closed under complementation operation, hence L1 is recursive.

    • L1.L2

    → Recursively enumerable languages are closed under concatenation operation, hence L1.L2 is recursive.

    • L1+

    → Recursive languages are closed under Kleene star operation, hence L1+ is recursive

  • Question 21/25
    2 / -0.33

    Let L1, L2 be any two context-free languages and R be any regular language. Then which of the following is/are CORRECT?

    Solutions

    Concept: Property of context-free languages is:

    Context-free languages are closed under union and difference but not closed under complementation and intersection.

    Explanation:

    Option 1) L1 ∪ L2 is context-free

    As context-free languages are closed under union. So it is correct.

    Option 2).  L̅1 is context-free

    L1 is a context-free language. According to the property, its complement can’t be context-free.

    Option 3) L1 – R is context-free

    As the difference of a context-free language with regular is context-free. So, it is correct.

    Option 4) L1 ∩ L2 is context-free

    It violated the context-free language property. The intersection of two CFL’s is not CFL. So, it is incorrect. 

  • Question 22/25
    2 / -0.33

    Consider the DFAs X and Y given below. The number of states in a minimal DFA that accepts the language L(X) ∪ L(Y).

    Solutions

    X is ending with b

    ∴ X = (a + b)*b

    Y is ending with a

    ∴ Y = (a + b)*a

    Let L(R) = L(X) ∪ L(Y)

    = (a + b)*b + (a + b)*a

    (a + b)*(a + b)

    = (a + b)+

    Note:

    Apart from ϵ every string is accepted
  • Question 23/25
    2 / -0.33

    Consider the language L = {an |n ≥ 0} ∪ {anbn| n ≥ 0} and the following statements.

    Which of the above statements is/are TRUE?

    Solutions

    Concept:

    Union of a Regular language and a Deterministic Context-Free Language (DCFL) is a DCFL.

    Explanation:

    Option 1: FALSE.

    L is not a regular grammar from the union property.

    Option 2: TRUE.

    L = {an |n ≥ 0} ∪ {anbn| n ≥ 0}

    {an |n ≥ 0} is a regular language and {anbn| n ≥ 0} is a DCFL and hence, there Union would be a DCFL.

    Option 3: FALSE.

    L is DCFL then it is CFL too.

    Option 4: TRUE

    L cannot be LL(k) for any number of look-ahead. LL(k) cannot conclusively distinguish that whether the string to be parsed is from aor from anbn. Both have a common prefix.

  • Question 24/25
    2 / -0.33

    Which of the following is decidable for language L?

    I. For a context sensitive language, L = ϕ

    II. For a context free language, L = ∑*

    III. For a deterministic context free language, L is finite

    IV. For a recursive language, w ϵ L where w is a string in L
    Solutions

    Emptiness problem for a context sensitive language is not decidable.

    Option 2:

    Completeness problem for a context free language in not decidable.

    Option 3:

    Finiteness problem for a deterministic context free language is decidable.

    Option 4:

    Membership problem for a recursive language is decidable.

  • Question 25/25
    2 / -0.33

    Which of the following is/are not equivalent regular expressions?
    Solutions

    (i) ((01)*(10)*)*

    It generates the strings of type {ϵ, 01, 10, 0110, 0101, 1001, 1010, 010110, 01011010,……..}

    (ii) (10 + 01)*

    Set of strings that are generated by the regular expression:

    { ϵ , 10, 01, 1010, 0101, 0110, 1001, 101010, 010101,………..}

    (iii) (01)* + (11)*

    Strings that are generates with this expression are:

    { ϵ , 01, 11, 0101, 1111, 010101, 111111,………. }

    (iv) (0* + (11)* + 0*)*)

    Strings that are generated with this regular expression:

    { ϵ , 0, 11, 00, 000, 011, 110, 0110, 00110, 01100,……….}

    Regular expression of first two options are equal, Therefore only 2 is equivalent rest all are not equivalent.
User Profile
-

Correct (-)

Wrong (-)

Skipped (-)


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
Get latest Exam Updates
& Study Material Alerts!
No, Thanks
Click on Allow to receive notifications
×
Open Now