Respuesta :

Answer:

True

Explanation:

Class string provides overloaded ==, !=, <, >, <=, and >= operators for string comparisons. Examples of method signatures of these operators are as follows:

bool operator== (const char*   l, const string& r);

bool operator!= (const char*   l, const string& r);

bool operator<  (const char*   l, const string& r);

bool operator>  (const char*   l, const string& r);

bool operator<=  (const char*   l, const string& r);

bool operator>= (const char*   l, const string& r);