Is there a simple way to determine whether a grammar is LL(1), LR(0), SLR(1)... just from looking on the grammar without doing any complex analysis?
For instance: To
p0 S' → E p1 E → id p2 E → id ( E ) p3 E → E + id
id ( id + id )