110k views
5 votes
Determine whether the compound condition is True or False.

1 2)

2 Answers

6 votes

Answer:there

Step-by-step explanation:

User Okon
by
4.7k points
2 votes

Answer:

A compound is said to be true if all condtions are true before it gets evaluated by the if statement or false otherwise, or nested conditionals are used if the previous conditions are true or evaluates to an else, if available.

Example:

if (x > y) && (y != 0): # compound conditional joind with an "and"

if x == 4:

# nested condition

User Dkv
by
4.7k points