Function equals() is _______________ and equalIgnoreCase() is _________________

Function equals() is _______________ and equalIgnoreCase() is _________________ Correct Answer Case sensitive, Case insensitive

Both the functions return Boolean value. The function equal() is case sensitive and returns false even if a single character is case different in two strings. The other function ignores the case sensitivity and only checks if the spellings are same.

Related Questions