Computer Science, asked by ramyavjrahul4208, 9 months ago

Write syntax for ""greater than or equal to"" operator.

Answers

Answered by YOGESHmalik025
1

< greater then

> smaller then

Answered by letmeanswer12
1

Syntax for Greater_Than_Or_Equal_To_Operator :=                                                                  expression '>=' expression.

Explanation:

The greater than or equal (>=) is used to compare two expressions for greater than or equal (a comparison operator). By comparing non null expressions, if the left operand has a greater or equal value than the right operand, the result is TRUE; otherwise, the result is FALSE.

Syntax:

  • Greater_Than_Or_Equal_To_Operator :=                                                                         expression '>=' expression.
  • expression - Is any valid expression. Both expressions must have implicitly convertible data types.
  • Return Type - Boolean.

Similar questions