In the following grammar
A -> A $ B|B
B -> B @ A|id
Which of the following is False?1
$ is a left associative
2
$ is right associative
3
@ is a left recursive
4
All of the above
In the following grammar
A -> A $ B|B
B -> B @ A|id
Which of the following is False?