Consider the following grammar (the start symbol is $E$) for generating expressions.
With respect to this grammar, which of the following trees is the valid evaluation tree for the expression $2*3*4 - 5*6+7$?
Answer is option B.
The corresponding parse tree is drawn for the given expression according to the given grammar.
@tsvkp1 As, both + and - are generated by same LHS so, both have the same precedence, Now the question is which one to evaluate first, So, When Precedence fails we go for associativity of the operator as + and - are right associative so the operator which is in Rightmost (+) will be evaluated first hence + will be evaluated first among + and -.
I hope now it is clear.
@ShiveshRoy
But $\mathbf +$ and $\mathbf -$ have the same associativity.
I don't think your logic is fully correct.
#TheQuickApproach
Here we know
* has high priority (Left to Right Associativity) +,- (Right to Left associativity)
Now if we evaluate the given expression using above data then it will give us
2∗3∗4−5∗6+7=-13
Now due to * has high priority with Left to right associativity 2*3 should done first.
which is done by Option B and D only. so except this 2 remaining options are eliminated.
Now Option B only gives result -13 and D gives 1 as result of Expression tree evaluation.
Hence Option B is Ans.
Answer will be (B)
Evaluation will be ((2*3)*4)-((5*6)+7)
$*$ has the highest precedence and is left associative. So, $((2*3)*4)...$ is done first.
Options A, C and E are eliminated.
After that, $5*6$ should be done.
B and D comply to that.
Now, $+$ and $-$ have equal priority, so treat them as same symbol: $((2∗3)∗4)<symbol>(5∗6)<symbol>7$
And they both are right associative.
So, treat the right symbol first.
=> Do addition first, then subtraction.
Hence, Option B is correct, and D is incorrect.
* has high priority (Left to Right Associativity)
+,- (Right to Left associativity)
2∗3∗4−5∗6+7=6*4-30+7=24-30+7=-6+7=1
Hence Option D is Ans.