Respuesta :

Answer:

False.

Explanation:

You can redefine the existing operators by using operator overloading in c++.We can extend the functionality by using the operator keyword.

But in C++ there are no methods to create new operators.

For ex:- There is no ** operator in c++.

2**3 which means 2 raised to the power three and there is no way to create a new operator like this.