0% found this document useful (0 votes)
29 views1 page

Operator Alternative Explanation: Eq Eq Ne

This document lists common operators used in many programming languages and their meanings, including arithmetic operators like addition and subtraction, comparison operators like less than and greater than, and logical operators like AND and OR. It also notes that Boolean operators like AND, OR, and NOT can be used to combine conditional statements.

Uploaded by

eswar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views1 page

Operator Alternative Explanation: Eq Eq Ne

This document lists common operators used in many programming languages and their meanings, including arithmetic operators like addition and subtraction, comparison operators like less than and greater than, and logical operators like AND and OR. It also notes that Boolean operators like AND, OR, and NOT can be used to combine conditional statements.

Uploaded by

eswar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Operator

Alternative

Eq

Equals

==

Eq

Equals

!=

Ne

Not equal

Plus

+=

Addition

++

Increment

a+

Minus

-=

Subtraction

--

Decrement

a-

Divide

Times

Explanation

>

Gt

Greater than

<

Lt

Less than

>=

Ge

Greater than or equal to

<=

Le

Less than or equal to

||

or

Boolean or

&&

and

Boolean and

Booleans are also considered operators where AND, OR, and NOT can also be
used in most programming languages.

You might also like