1. Can the if statement be too long or have to many conditions? If so what are the limits? ie:

    if (a == b and b == c and c == d and d == e) then...

  2. Can the if statement be too long or have to many conditions? If so what are the limits? ie:

    if (a == b and b == c and c == d and d == e) then...

    There is no limit

    but when it gets too long it will be harder to maintain

    I always try to keep my code neat and clean :)