...
Compiler-Design
January 31, 2024
Compiler-Design
January 31, 2024
Compiler-Design
January 31, 2024
Compiler-Design
January 31, 2024

Compiler-Design

Question 12

A shift reduce parser carries out the actions specified within braces immediately after reducing with the corresponding rule of grammar

S → xxW {print "1"}
S → y {print "2"}
W → Sz {print "3"} 

What is the translation of xxxxyzz using the syntax directed translation scheme described by the above rules?

A
23131
B
11233
C
11231
D
33211
Question 12 Explanation: 

⇒ 23131
Note SR is bottom up parser.
Correct Answer: A
Question 12 Explanation: 

⇒ 23131
Note SR is bottom up parser.

Leave a Reply

Your email address will not be published. Required fields are marked *