Hello,
Since conjunction and disjunction are left-associative, your grammar should have left-recursive rules for them, e.g.
Exp1 ::= Exp1 "&&" Exp2
Then it cannot be an LL grammar (see lecture 4).
The dangling else conflict is another reason for this: a grammar that is not LR(1) cannot be LL(1); the book says more about the relations between these classes. (Notice that an LR conflict always means that the grammar is, strictly speaking, not LR.)
Regards
Aarne.