Questions: Syntactic Parsing Algorithms and Models

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

The sentence 'The horse raced past the barn fell' causes readers to initially treat 'raced' as the main verb and then struggle to reanalyze. This illustrates a limitation of which parsing strategy?

AChart parsing — it cannot handle reduced relative clauses and fails to find the correct analysis
BShift-reduce parsing — greedy sequential commitment leads to costly reanalysis when later words contradict early decisions
CTop-down parsing — it cannot process passive constructions unless given explicit grammar rules for them
DCYK parsing — its O(n³) complexity creates processing delays for sentences with embedded clauses
Question 2 Multiple Choice

Neural parsers achieve state-of-the-art parsing accuracy without explicit grammatical rules, learning directly from annotated treebanks. What is the most significant limitation this creates?

ANeural parsers run slower than chart parsers for sentences longer than approximately 20 words
BWithout explicit rules, neural parsers cannot generalize to sentences longer or more complex than those in training data
CThe learned representations are opaque — it is unclear what linguistic knowledge the parser has actually acquired
DNeural parsers cannot handle structurally ambiguous sentences because they only output a single parse
Question 3 True / False

Chart parsing using the CYK algorithm is complete — it finds all valid parses of an ambiguous sentence — but this completeness comes at the cost of potentially generating exponentially many analyses for highly ambiguous inputs.

TTrue
FFalse
Question 4 True / False

Shift-reduce parsing is preferred when complete enumeration of most possible analyses is required, because its linear time complexity makes it fast enough to evaluate most possible parse.

TTrue
FFalse
Question 5 Short Answer

Explain the fundamental tradeoff between chart parsing and shift-reduce parsing. Under what circumstances would each approach be preferred?

Think about your answer, then reveal below.