C# Programming - Operators - Discussion

Discussion Forum : Operators - General Questions (Q.No. 3)
3.
Which of the following is NOT an Arithmetic operator in C#.NET?
**
+
/
%
*
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
5 comments Page 1 of 1.

Deepak said:   1 decade ago
Yes ** is not arithmetic operator it is a logical operator.

Rohit said:   1 decade ago
Then what is the meaning of **?

Ram said:   1 decade ago
How xor works:(1+1=0;0+0=0;1+0=1).

11110111
10101011
--------
01011100

01011100 equivalent decimal number is 92.

Ravi Ranjan said:   1 decade ago
+,-,* and / are the arithmetic operator in all languages but ** is not any operator in any language.

Avishesh said:   1 decade ago
/,+,*,% are the basic arithmetic operators in c++ representing division,addition,multiplication and mad respectively and there is no operator assinged with **

Post your comments here:

Your comments will be displayed after verification.