If your heart rate exceeds 185 beats per minute during exercise, it is dangerous for you. Your target heart rate zone is the range of heart rate that you should aim for if you want to become physically fit. It is calculated as 60 to 80 percent of your maximum heart rate.
Answer:
all but 3
Explanation:
3 is strange and I need points sorry
This program uses a conditional to determine if seafood is safe to consume.
IF (seafood = "mollusk" OR daysFrozen ≥ 7) { rating ← "safe" } ELSE { rating ← "unsafe" }
In which situations will rating be "safe"?
️Note that there may be multiple answers to this question.
Choose all answers that apply:Choose all answers that apply:
1. When sea food is mollusk and day frozen is 1
2.When sea food is mollusk and day froze is 9
3. When see food salmon and day frozen is 7
<em>Did that help?</em>
Answer:
1, 4, 7
Explanation:
The instruction in the question can be represented as:
for i in range(1,10,3):
print i
What the above code does is that:
It starts printing the value of i from 1
Increment by 3
Then stop printing at 9 (i.e.. 10 - 1)
So: The sequence is as follows
Print 1
Add 3, to give 4
Print 4
Add 3, to give 7
Print 7
Add 3, to give 10 (10 > 10 - 1).
So, it stops execution.