We can conjoin the conditions of sequential if statements with the same body containing a return statement using ||.
Correct! If the body of if statements involve return, break or continue statements, regardless of whether conditions are exclusive or not, we can conjoin conditions.
The functionality and execution of sequential if statements that contain return statements in their bodies are the same as if-else if structure.
Correct!
We can always conjoin the conditions of sequential if statements with the same body that includes print statements using ||.
Not always! For example, in the previous activity, when number == 28, conjoining the conditions results in "Good guess" being printed only once, whereas keeping them separate causes "Good guess" to be printed twice.