Respuesta :

pmn

Answer:

False

Explanation:

False. The C++ language itself doesn't require you to name variables in a way that indicates what they are used for; it allows you to choose virtually any valid identifier for variable names. However, it is considered good programming practice to choose meaningful and descriptive names for variables to make the code more readable and maintainable. This is an important part of writing clear and understandable code, but it is not enforced by the language's syntax or compiler.