Consider the following grammar: A->e B->aAbC B->bAbA A->bB The number of productions added on the removal of the nullable in the given grammar:

Consider the following grammar: A->e B->aAbC B->bAbA A->bB The number of productions added on the removal of the nullable in the given grammar: Correct Answer 4

The modified grammar aftyer the removal of nullable can be shown as: B->aAbC| abC B->bAbA| bbA| bAb| bb A->bB

Related Questions

Given grammar G: S->aS| AB A-> e B-> e D-> b Reduce the grammar, removing all the e productions: