Computer Science, asked by fuzzle, 16 days ago

Complete the following programs:


1. REM display first ten even numbers.

A = ------

L: PRINT ------

A = ------ + 2

IF A<= ------- THEN GOTO L

END

2. REM Display the table of a given number.

--------- “TYPE A NUMBER”; A

FOR ------ = 1 TO ------

PRINT A * C

--------- C

END

3. REM Display the first 10 natural numbers in reverse order.

-------- M = ------ TO 1 STEP ------

PRINT M

NEXT -------

END​

Answers

Answered by manoranjan12345
1

Answer:

FOR ------ = 1 TO ------

PRINT A * C

--------- C

END

3. REM Display the first 10 natural numbers in reverse order.

-------- M = ------ TO 1 STEP ------

PRINT M

NEXT -------

END

Explanation:

please mark me brainliest

Similar questions