User Forum

Subject :ICSO    Class : Class 7

What is the output of the given QBasic code?
CLS
x = 5
IF (x >= 5) THEN PRINT "x is greater than or equal to 5"
IF (x <= 5) THEN PRINT "x is less than or equal to 5"
IF (x <> 5) THEN PRINT "x does not equal 5"

Ax does not equal 5
Bx is greater than or equal to 5
Cx is greater than or equal to 5
          x is less than or equal to 5
          x does not equal 5
Dx is greater than or equal to 5
          x is less than or equal to 5


explain this

Post Your Answer