FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which of the following is NOT a mathematical operator?
A
* (Multiplication)
B
> (More than)
C
/ (Division)
D
+ (Addition)
Explanation: 

Detailed explanation-1: -There are more arithmetic operators like exponentiation, modulus operations, increment, decrement, etc. *-Multiplication operator. So, And operator is not an arithmetic operator. It is a logical operator.

Detailed explanation-2: -The string concatenation operator (&) is not an arithmetic operator, but in precedence, it does fall after all arithmetic operators and before all comparison operators.

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

Detailed explanation-4: -The arithmetic operators for scalars in MATALB are: addition (+), subtraction (−), multiplication (*), division (/), and exponentiation (^). Vector and matrix calculations can also be organized in a simple way using these operators.

There is 1 question to complete.