Computer Science, asked by agnidiptog, 2 months ago

What are the terms IF-THEN, IF-THEN-ELSE mean in BASIC?

Answers

Answered by Anonymous
0

Explanation:

A high-level programming language statement that compares two or more sets of data and tests the results. If the results are true, the THEN instructions are taken; if not, the ELSE instructions are taken. The following is a BASIC example: 10 if answer = "y" then print "Yes" 20 else print "No"

Similar questions