Consider the following program code:
if ("Apple" gt "Pear")
{
print("True ");
}
else
print("False ");
if ("Banana" le "Banana")
What is the result of executing this program code?
False False
False True
True False
True True
Submit