Use of const member function in a program _________________________

Use of const member function in a program _________________________ Correct Answer Is optional, always

The use of const member functions is not mandatory. If const objects are involved then there is a high use of const member functions too. But there is no mandatory condition.

Related Questions

If a const object calls a non-const member function then ____________________
What will the given C code do?
int memcmp(const void *str1, const void *str2, size_t n)
What will be returned in the following C code?
size- t strlen(const char *s)const char *sc;for(sc = s; *sc!= ' \ O ' ; ++sc)return(sc - s) ;
What will be the output of the following PHP code? () { define("const","I am awesome!"); echo constant("const"); } one(); ?>
How is it possible to have both const and non-const version of a function?