Are the conditions for an "If" Statement equal for all the major forms of code (Python, Java, & C++). Or meaning that do if statements in each language of code have the same parameters and function? Here's an Example from java
if (foundLeaf()) {
eatLeaf();
}
else if (canMove()) {
move();
}
else {
turnLeft();
}
How are the other main programs similar or different to this?
