Given below is a QBASIC program which is not printing any value. Find the error in the given QBASIC program:
10 PRINT “Enter a number, zero to stop:;
20 input A
30 IF A THEN GOTO 70
40 LET A = A + 10
50 PRINT “The number plus 10 is”, A
60 GOTO 10
70 STOP
You can run the program by pressing ______.
1 Crore+ students have signed up on EduRev. Have you? Download the App |
Which of the following is NOT a QBASIC operator?
What value will be printed after the successful execution of the following codes?
LET C = 0
DO WHILE C < 10
LET C = C + 1
LOOP
PRINT C
What is the output of the following QBASIC program?
CLS
LET X$ = “MY NAME”
LET Y$ = “IS”
LET Z$ = “MANMOHAN”
PRINT X$; Y$, Z$,
Text that you wish to appear on the screen while your program runs must appear inside ______.
The shortcut keystroke for PRINT is ______.
What will be the output of the following QBASIC code?
firstword$ = “wicket”
secondword$ = “keeper”
PRINT firstword$ +secondword$
1 docs|37 tests
|