Read the program given below and answer the following questions.
PRINT "Welcome to the world of Computers"
name$ = " Robotic Process Automation"
ADDRESS$ = "New York"
PRINT name$
PRINT ADDRESS$
END
a. Identify and write the variable names from the above program.
b. Write the output of the above program.
Answers
Answered by
0
Answer:
name$ and ADDRESS$ are variables
And output is
Welcome to the world of Computers
Robotic Process Automation
New York
[Program finished]
Similar questions