Computer Science, asked by ishansaha26, 8 hours ago

______statement indicates that the program is over in QBASIC​

Answers

Answered by BrainlyProgrammer
4

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
Similar questions