1.

______statement indicates that the program is over in QBASIC​

Answer»

Answer:

  • END STATEMENT indicates that the program is over

Know More:-

Here is the sample forma.t of QBASIC which calculates the sum of the TWO given numbers

CLS

INPUT A

INPUT B

SUM=A+B

PRINT "SUM=";SUM

END

Always Remember!!

  • 'INPUT' is used for accepting input from the user
  • 'PRINT' - to DISPLAY a message on the OUTPUT screen
  • 'CLS' - to clear the output screen
  • 'END' - to terminate/end the program


Discussion

No Comment Found