An If-Then statement that sets the variable hours to 10 when the flag variable minimum is set:
Using an explicit comparison:
if minimum:
hours = 10
This statement simply checks if minimum is True. If it is, then it assigns 10 to the hours variable.
Answer:
if(minimum){
hours=10
}
Step-by-step explanation:
when minimum is true that if condition is true and the variable hours set to 10
6.2m questions
8.2m answers