Evaluate this Java code for its clean code practice:
boolean isActive; // Whether the user is active or not
Variable name is clear and comment is redundant
Variable name is unclear without the comment
Comment should be more detailed
Variable should be renamed to 'activeStatus'