Computer Science, asked by vyassauhard16, 1 month ago

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 atrs7391
0

This program has only one type of operator i.e. Relational Operator (>= on line 4 [IF AGE>=18 THEN])

Similar questions