Computer Science, asked by 15406ateeba, 2 months ago

II. Separate the commands and statement from the list and write their use.
. READ
• REM
• RUN
• INPUT
. LIST
• GOTO
. LET
• PRINT
• SAVE
• IF...THEN...ELS
• ELSE
• LOCATE
.LOAD
• DATA
• CLS​

Answers

Answered by jayantkora7
1

Answer:

LET Introduces the assignment statement, and is required

PRINT Provides free-form output

END Is required

READ Assigns values to variables from internal data

DATA Introduces internal data

GOTO Does just that, transfers to another line-numbered statement

IF Gives a conditional GOTO

FOR Introduces the looping construct

NEXT Terminates the looping construct

GOSUB Does a GOTO to a subroutine

RETURN Returns from the end of the subroutine

DEF Introduces programmer-defined functions

DIM Allows dimensioning arrays

REM Provides comments

STOP Same as reaching the END statement

Explanation:

any problems please ask me

Similar questions