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