0
0
Compiler Designknowledge~20 mins

Parse trees and derivations in Compiler Design - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Parse Tree Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Parse Tree Structure

Consider a simple grammar for arithmetic expressions with rules:
E → E + T | T
T → T * F | F
F → (E) | id

Which of the following statements about the parse tree for the expression id + id * id is correct?

AThe parse tree has <code>id + id + id</code> as a flat structure without multiplication.
BThe parse tree groups as <code>(id + id) * id</code>, ignoring operator precedence.
CThe parse tree shows <code>id + (id * id)</code> grouping, reflecting operator precedence.
DThe parse tree cannot represent this expression due to ambiguity.
Attempts:
2 left
💡 Hint

Recall that multiplication has higher precedence than addition in arithmetic expressions.

📋 Factual
intermediate
1:30remaining
Derivation Types in Context-Free Grammars

Which of the following best describes the difference between a leftmost derivation and a rightmost derivation in context-free grammars?

ALeftmost derivation always replaces the leftmost non-terminal first; rightmost derivation replaces the rightmost non-terminal first.
BLeftmost derivation replaces terminals first; rightmost derivation replaces non-terminals first.
CLeftmost derivation applies only to left-recursive grammars; rightmost derivation applies only to right-recursive grammars.
DLeftmost and rightmost derivations produce different languages from the same grammar.
Attempts:
2 left
💡 Hint

Think about the order in which non-terminals are expanded during derivation.

🔍 Analysis
advanced
2:30remaining
Identifying Ambiguity from Parse Trees

Given the grammar rules:
S → S + S | S * S | (S) | id

Which of the following statements about the parse trees for the string id + id * id is true?

AThere is exactly one parse tree, showing multiplication before addition.
BThere are multiple parse trees, indicating the grammar is ambiguous for this string.
CThe parse tree shows addition before multiplication, ignoring operator precedence.
DNo parse tree can be constructed because the grammar is incomplete.
Attempts:
2 left
💡 Hint

Consider if the grammar enforces operator precedence or allows multiple interpretations.

Comparison
advanced
2:00remaining
Comparing Parse Trees and Derivations

Which of the following best explains the relationship between a parse tree and a derivation sequence for a given string in a context-free grammar?

AA derivation sequence is always shorter than the parse tree height.
BA derivation sequence is a graphical representation of a parse tree with nodes and branches.
CParse trees and derivation sequences are unrelated concepts used in different grammar types.
DA parse tree visually represents the hierarchical structure of a derivation sequence, showing how the string is generated step-by-step.
Attempts:
2 left
💡 Hint

Think about how derivations and parse trees represent the generation of strings.

Reasoning
expert
3:00remaining
Determining the Number of Leaves in a Parse Tree

Consider a parse tree generated from a context-free grammar for the string id + id * id. If each id corresponds to a leaf node, how many leaf nodes will the parse tree have?

A5
B7
C3
D9
Attempts:
2 left
💡 Hint

Count the number of terminal symbols in the string.