Methods that return boolean are usually named with 'is' prefix - isTrue(), isSet(), isNull(), etc. Is it against convention to have plurals in such names like - areTrue(), areNotNull(), etc?
Also in what cases can a method have a 'call' or 'invoke' prefix. Can I use 'call' prefix to call a DAL method from business layer, like callCreateUser()?