Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What is the output of the following?
if 1<2
print “one is less than two”
end

What is the output of the following?
if 1<2
print “one is less than two”
end
a) One is less than two
b) Syntax error
c) 1<2
d) None of the mentioned

Answer: a
Explanation: The given condition is true so print statement gets executed.
Output: One is less than two

Join The Discussion