InterviewSolution
Saved Bookmarks
| 1. |
Comparison operator has only true or false value..? true false |
|
Answer» Explanation:Which relation operator is used for comparison? If both OPERANDS are NUMERIC, then a numeric comparison is performed. If either of the operands is a STRING value, then a string comparison is used. If one or both operands are Null, then the result is Null. ... Comparison Operator Symbol Name < less than > greater than <= less than or equal to >= greater than or equal to 5 more ROWS |
|