✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the grammar for boolean expressions with short-circuit evaluation:
B → B1 AND M B2 { B.code = B1.code || "if_false goto L" || B2.code }B → id { B.code = "load " || id.lexeme }M → ε { M.inh = newLabel() }
Which statement about the above SDD is true?