question: 4 how would we write an if statement where tracy will put the pen down if a variable called count…

question: 4 how would we write an if statement where tracy will put the pen down if a variable called count was positive? if count >= 0: pendown() if count > 0(): pendown() if count > 0: pendown() if count > 0: pendown() question: 5 if we write an if statement and the condition is false, what does tracy do? the code stops running tracy gives us an error tracy completes the indented code tracy skips the commands under the if statement
Answer
Explanation:
Step1: Analyze positive - number condition
In programming, a positive number means greater than 0. For an if - statement to check if a variable count is positive, the correct condition is count > 0.
Step2: Analyze if - statement behavior when false
In an if - statement, when the condition is false, the code block (the indented code) under the if - statement is skipped.
Answer:
Question 4: C. if count > 0: pendown() Question 5: D. Tracy skips the commands under the if statement