Computer Science, asked by rishiraj7A52, 10 months ago


what will be the output of the following program if the number entred is 400
CLS
INPUT "Enter a number: ", Number
IF Number < 100 THEN
PRINT "Your number was less than 100"
ELSE
PRINT "Your number was greater than or equal to 100"
END IF​

Answers

Answered by devasya619
1

Answer:

You give your input as 400 which is clearly greater than 100

so according to the condition

As 400>100

The output will be

Your number was greater than or equal to 100

Similar questions