answersLogoWhite

0

Is there a specific language that you're after? The list may vary between them, but I'll try to include them all.

= (Equal To - in BASIC)

<> (Not Equal To - in BASIC)

== (Equal Value - Conventional)

=== (Equal Value and Type - No implicit type conversion)

!= (Not Equal - Conventional)

!== (Different Value or Type - No implicit type conversion)

> (Greater Than)

< (Less Than)

>= (Greater Than or Equal To)

<= (Less Than or Equal To)

I believe some languages also use /= as a Not Equal operator.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What is a relational operators in c?

Relational operators are those operators which shows relation between two operands. e.g. ==, &lt;=,&gt;=,&lt;,&gt;


Unary and binary operators in relational Algebra?

The nnary and Binary operators in relational Algebra.


What type of expression is obtained in relational operators?

A boolean is an expression obtained in relational operators.


Explain the categories of PHP Operators in web technology?

There are arithmetic operators (+, -, %, ++, etc.), comparison operators (&lt;, ==, &gt;=, !=, etc.), logical operators (&amp;&amp;, !, , etc.), assignment operators (=, *=, %=, +=, etc.), conditional operator (?:). The order of operations is unary (!, ++, --), multiplicative (left to right; *, /, %), additive (left to right; +, -), relational (left to right; &lt;, &lt;=, &gt;, &gt;=), equality (left to right; ==, !=), logical and (left to right; &amp;&amp;, and), logical or (left to right; , or), conditional (?:), assignment.


What are different type's operators?

The different types of operators are as follows: *Arithmatic operator *Relational operator *Logical operator *Assignment operator *Increment/Decrement operator *Conditional operator *Bitwise operator *Special operator


What is relational operator in c?

Relational operators are those operators which shows relation between two operands. e.g. ==, &lt;=,&gt;=,&lt;,&gt;


What are different types of operators?

The different types of operators are as follows: *Arithmatic operator *Relational operator *Logical operator *Assignment operator *Increment/Decrement operator *Conditional operator *Bitwise operator *Special operator


What are different operator in Awk?

In Awk, operators are used to perform various operations on data. The main types include arithmetic operators (e.g., +, -, *, /, %), relational operators (e.g., ==, !=, &lt;, &gt;, &lt;=, &gt;=), and logical operators (e.g., &amp;&amp;, ||, !). Additionally, there are string operators like concatenation (&quot;string1&quot; &quot;string2&quot;), and assignment operators (e.g., =, +=, -=, etc.). These operators enable effective data manipulation and processing in Awk scripts.


What is precedence between relational operator and arithmetic operator?

Arithmetic operators (+, -, *, /, % ) have greater precedence over relational operators (&lt;, &gt;, &lt;=, &gt;=, ==, !=) in C language.


Which relational algebra operators can be applied to pair of tables that are not union compatible?

Which relational algebra operators can be applied to a pair of tables that are not union compatible


What are the different types of operations of c?

c have different types of operations are there these are 1:logical operators 2:conditional 3:arithmetic 4:bit wise operators 5:increment&amp;decrement 6:relational operators 7:assignment operators 8:special operators we can use above operators. we can implementing the operations. suppose logical operators &amp;&amp;,,! by using these we can implement operations


What are the operaters used in VBNET?

In VB.NET, operators are used to perform operations on variables and values. The main categories of operators include arithmetic operators (e.g., +, -, *, /, Mod), relational operators (e.g., =, &lt;&gt;, &lt;, &gt;, &lt;=, &gt;=), logical operators (e.g., And, Or, Not), and bitwise operators (e.g., And, Or, Xor, Not). Additionally, VB.NET includes assignment operators (e.g., =, +=, -=) and concatenation operators (e.g., &amp; for strings). These operators enable developers to manipulate data and control program flow effectively.