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

Computer Science Fundamentals Assignment 3

The document describes relational operators such as equal, not equal, greater than, less than, greater than or equal to, and less than or equal to. It provides examples of how each operator is used and the results of those examples. The document also describes logical operators such as logical AND, logical OR, and logical NOT and provides examples of how they are used and their results.

Uploaded by

Jahzeel Handayan
Copyright
© Attribution Non-Commercial (BY-NC)
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)
88 views1 page

Computer Science Fundamentals Assignment 3

The document describes relational operators such as equal, not equal, greater than, less than, greater than or equal to, and less than or equal to. It provides examples of how each operator is used and the results of those examples. The document also describes logical operators such as logical AND, logical OR, and logical NOT and provides examples of how they are used and their results.

Uploaded by

Jahzeel Handayan
Copyright
© Attribution Non-Commercial (BY-NC)
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

Handayan, Jahzeel Joyvie G.

BSCS-11M1

Relational Operators:
Operator == Description Checks if the value of two operands is equal or not, if yes then condition becomes true. Checks if the value of two operands is equal or not, if values are not equal then condition becomes true. Checks if the value of left operand is greater than the value of right operand, if yes then condition becomes true. Checks if the value of left operand is less than the value of right operand, if yes then condition becomes true. Checks if the value of left operand is greater than or equal to the value of right operand, if yes then condition becomes true. Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true. Example (A == B) is not true.

!=

(A != B) is true.

>

(A > B) is not true.

<

(A < B) is true.

>=

(A >= B) is not true.

<=

(A <= B) is true.

Logical Operators:
Operator && Description Called Logical AND operator. If both the operands are non zero then condition becomes true. Called Logical OR Operator. If any of the two operands is non zero then condition becomes true. Called Logical NOT Operator. Use to reverses the logical state of its operand. If a condition is true then Logical NOT operator will make false. Example (A && B) is false.

||

(A || B) is true.

!(A && B) is true.

You might also like