Free Ebook cover Complete Logic Programming Course for Beginners

Complete Logic Programming Course for Beginners

4

(3)

83 pages

Relational Operators: Inequality

Capítulo 24

Estimated reading time: 3 minutes

+ Exercise
Audio Icon

Listen in audio

0:00 / 0:00

Relational operators are a fundamental part of programming logic. They are used to compare two values ​​and return a boolean (true or false) value based on the result of that comparison. In this chapter, we will focus on one specific relational operator: the inequality operator.

The inequality operator is represented by the symbols "!=". This operator is used to check if two values ​​are different. If the values ​​are different, the expression returns true. If the values ​​are equal, the expression returns false. For example, the expression "5 != 3" returns true, because 5 and 3 are different values. On the other hand, the expression "2 != 2" returns false, because the two values ​​are equal.

The inequality operator can be used with different data types, including numbers, strings, and Booleans. For example, you can use the inequality operator to compare two strings and see if they are different. The expression '"Hello" != "World"' returns true, because the two strings are different. Likewise, the expression '"true" != "false"' returns true, because the two strings are different.

The inequality operator can also be used to compare two Boolean values. For example, the expression 'true != false' returns true, because the two boolean values ​​are different. Likewise, the expression 'true != true' returns false, because the two boolean values ​​are equal.

It is important to note that the inequality operator is a binary operator, which means that it requires two operands. One operand is the value to the left of the operator, and the other is the value to the right of the operator. For example, in the expression '5 != 3', 5 is the left operand and 3 is the right operand.

Continue in our app.

You can listen to the audiobook with the screen off, receive a free certificate for this course, and also have access to 5,000 other free online courses.

Or continue reading below...
Download App

Download the app

Inequality operators are often used in conditional statements, which are a fundamental part of programming logic. A conditional statement is a statement that performs a specific action based on the result of a condition. For example, you can use an inequality operator in a conditional statement to perform a specific action if two values ​​are different.

For example, consider the following code:

if (age != 18) {
  console.log("You are not 18 years old.");
} else {
  console.log("You are 18 years old.");
}

In this code, the conditional statement checks if the 'age' variable is different from 18. If the 'age' variable is different from 18, the code displays the message "You are not 18 years old.". If the 'age' variable equals 18, the code displays the message "You are 18 years old.".

In summary, the inequality operator is a powerful tool in logic programming. It allows you to compare two values ​​and take specific actions based on the result of that comparison. By mastering the use of the inequality operator, you can create more complex and powerful programs.

Now answer the exercise about the content:

What does the inequality operator do in programming logic?

You are right! Congratulations, now go to the next page

You missed! Try again.

The inequality operator is used to compare if two values are different. It returns a Boolean true if the values are different and false if they are equal. This aligns with option 3, making it the correct choice.

Next chapter

Relational Operators: Greater than

Arrow Right Icon
Download the app to earn free Certification and listen to the courses in the background, even with the screen off.