727 views
1 votes
1 votes

A predictive tp down parsing with parsing table must avoid three anomalies:

Ambiguity, left factoring, left recursion.

  • Left factoring causes multiple entires for same input-stack pair in parsing table.
  • Left recursion causes infinite loops in parsing process.

How ambiguity practically affects top down parsing?

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
bunty choudhary asked Feb 9, 2018
456 views
why top down parser uses left most derivation? is it mandatory or we can change it by modifying the algo?
1 votes
1 votes
1 answer
2
vishal chugh asked Jan 23, 2018
1,061 views
Since it is a Bottom Up Parser do we need to evaluate expressions following Right Hand Derivations or Left Hand Derivations,i.e. should we evaluate D - d first or B - B f...
1 votes
1 votes
1 answer
3
durgesh94 asked Jun 15, 2016
1,761 views
Which of the following feature(s) is/are needed to implement top down parsingSource string marker Prediction making mechanismMatching and Backtracking me...
2 votes
2 votes
1 answer
4
Prakash059 asked May 3, 2016
2,012 views
If a grammer(CFG) is ambiguous then we can construct the topdown and bottomup parsing is possible directly???or we will make them into unambiguous then we will construct?...