Multiple choice technology mainframe

DEFINE DATA LOCAL 1 #VAR-1 (A25) END-DEFINE MOVE 'THIS IS MY FIRST PROGRAM' TO #VAR-1 WRITE #VAR-1 END The above statements are correct or not.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This is valid Natural language syntax. DEFINE DATA LOCAL defines local variables, END-DEFINE terminates the definition block, MOVE assigns a string literal to the variable, WRITE outputs it to the screen, and END terminates the program. The indentation and structure follow Natural programming conventions correctly.