Computer Science, asked by brainly10038, 1 day ago

QBASIC divides the output screen into how many zones?

Don't spam. Spam answer will be deleted. ​

Answers

Answered by soyaanna8910
1

Basic screen is divided into 9 parts

A command used in the program is called a statement. The statement performs specific task in the program.There are several different commands used in QBASIC. For example, the INPUT statement takes the input from the user, the PRINT statement displays output and CLS statement clears the screen.

The specific sets of statements make a program, There may be a number of statements in a program. In the program, all the statements should be written correctly. Like other programing languages, QBASIC language has its own syntax and rules of programming

Answered by nihasrajgone2005
0

Answer:

  • CLS. P = 5. START: PRINT P. P = P + 5. IF P <= 50 THEN GOTO START: END.
  • CLS. P = 2. Q = 1. START: PRINT P*Q. Q = Q + 1. IF Q <=10 THEN GOTO START: END.
  • CLS. C = 3. D = C*2. START: PRINT C,D. C = C + 2. IF C <=10 THEN GOTO START: END.
Similar questions