FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

5 BASIC ELEMENTS OF PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
the five arithmetic operators supported by c++
A
+, -, *, /, %
B
()$%
C
{<>}
D
None of the above
Explanation: 

Detailed explanation-1: -These operators are + (addition), -(subtraction), * (multiplication), / (division), and % (modulo).

Detailed explanation-2: -But here, we will understand only the Arithmetic Operator in the C programming language. Arithmetic Operator is used to performing mathematical operations such as addition, subtraction, multiplication, division, modulus, etc., on the given operands. For example: 5 + 3 = 8, 5-3 = 2, 2 * 4 = 8, etc.

Detailed explanation-3: -C programming has two operators increment ++ and decrement–to change the value of an operand (constant or variable) by 1.

There is 1 question to complete.