Open In App

GATE | GATE-CS-2007 | Question 52

Like Article
Like
Save
Share
Report

Consider the grammar with non-terminals N = {S,C,S1 },terminals T={a,b,i,t,e}, with S as the start symbol, and the following set of rules:

S --> iCtSS1|a
S1 --> eS|ϵ
C --> b

The grammar is NOT LL(1) because:

(A)

it is left recursive

(B)

it is right recursive

(C)

it is ambiguous

(D)

It is not context-free.


Answer: (C)

Explanation:

A  LL(1) grammar doesn\’t give to multiple entries in a single cell of its parsing table. It has only single entry in a single cell, hence it should be unambiguous. 

Option A is wrong. Grammar is not left recursive. For a grammar to be left recursive a production should be of form A->Ab, where A is a single Non-Terminal and b is any string of grammar symbols.

Option B is wrong. Because a right recursive grammar has nothing to do with LL(1).

Option D is wrong. Because the given grammar is clearly a Context Free Grammar. A grammar is CFG if it has productions of the form A->(V∪ T)* , where A is a single non-terminal and V is a set of Non-terminals and T is a set of Terminals. 

Hence Option C should be the correct one. i.e. the grammar is ambiguous.

But let\’s see how the grammar is ambiguous.

If the grammar is ambiguous then it should give multiple entry in a cell while making its parsing table. And Parse table is made with the aid of two functions : FIRST and FOLLOW.

A parsing table of a grammar will not have multiple entries in a cell( i.e. will be a LL(1) grammar) if and only if the following conditions hold for each production of the form A->α|β 1) FIRST(α)  âˆ© FIRST(β) =   Î¦ 2) if FIRST(α) contains \’ ε \’ then FIRST(α) ∩ FOLLOW (A) =  Î¦ and vice-versa.

Now,

  • For the production , S->iCtSS1|a, rule 1 is satisfied, because FIRST(iCtSS1) âˆ© FIRST(a) = {i} âˆ© {a} = Î¦
  • For the production, S1->eS|ε, rule 1 is satisfied, as FIRST(eS) âˆ© FIRST(ε) = {e} âˆ© {ε} = Î¦   .  But here due to \’ε\’ in FIRST, we have to check for rule 2. FIRST(eS)  âˆ© FOLLOW(S1) = {e} âˆ© {e, $} â‰  Î¦ .  Hence rule 2 fails in this production rule. Therefore there will be multiple entries in the parsing table, hence the grammar is ambiguous and not LL(1).

Please refer these link to learn how to find FIRST and FOLLOW:  


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 14 Sep, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads