Identify the types of operator in the following program
CLS
PRINT "ENTER YOUR AGE"
INPUT AGE
IF AGE>=18 THEN
PRINT "ELIGIBLE TO VOTE"
ELSE
PRINT "NOT ELIGIBLE TO VOTE"
END IF
END
Answers
Answered by
0
This program has only one type of operator i.e. Relational Operator (>= on line 4 [IF AGE>=18 THEN])
Similar questions