180k views
0 votes
When C++ is working with an operator, it strives to convert operands to the same type. This is known as

A) type correction
B) type conversion
C) demotion
D) promotion
E) None of these

User Yamilee
by
5.4k points

1 Answer

2 votes

Answer:

The answer is "Option B"

Step-by-step explanation:

Conversion of type is a way of changing an entity from one data type to another. It is used to make the variable process properly by a function in computer coding.

In the C++ language, the result of the multitype value added or any other option is the result between those variables as a large type at that time, that's why choice b is correct.

User Max Malyk
by
5.6k points