Computer Science, asked by sushantraj, 1 year ago

which operator is used to represent less than or equal to condition in qb64

Answers

Answered by Pratyush0705
40
The operator is <= and is a relational operator.
Answered by Anonymous
4
  • To check conditions in qb64 we use IF statements.

IF(condition)

statement 1

ELSE

statement 2

  • statement 1 will execute only if the condition for if is true.
  • Operators are used to create comparisons for the conditions.
  • List of operators:
  1. <     Less than  
  2. <=   Less than or equal to
  3. >     Greater than
  4. >=   Greater than or equal to
  5. =     Equal to
  6. <>   Not Equal to
Similar questions