A relational operator checks relation between two operands. it returns true(1) or false(0) Boolean value in result. these are binary operators.
एक रिलेशनल ऑपरेटर दो ऑपरेंड के मध्य सम्बन्ध की जाँच करता है। यह परिणाम स्वरुप बूलियन वैल्यू 1 TRUE या 0 FALSE प्रदान करता है। ये बाइनरी ऑपरेटर होते है।
Let variable A=10 and B=5
माना कि A=10 एवं B=5
Following table represents operators,their description and example-
निम्न तालिका में ऑपरेटर,उसका संक्षिप्त विवरण एवं उदाहरण दर्शाए गए है -
Operator | Description | Example |
---|---|---|
== | Equality | (A == B) false |
!= | Inequality | (A != B) true |
> | Greater than | (A > B) true |
< | Lesser than | (A < B) false |
>= | Greater than or Equal | (A >= B) true |
<= | Lesser Than or Equal | (A <= B) false |
No comments:
Post a Comment