Simple question, from a readability standpoint, which method name do you prefer for a boolean method:
public boolean isUserExist(...)
or:>
Purely subjective.
I prefer userExists(...) because then statements like this read better:
userExists(...)
if ( userExists( ... ) )
or
while ( userExists( ... ) )