If (sales >= 10000)
commission = 0.2;
The answer I believe is B
A. How many marathons you have run, because it doesn't relate to the job you're applying for.
Sudden changes in temperature especially in high humidity conditions may cause condensation inside the camera and spoil it.
<u>Explanation:</u>
When the temperature changes suddenly, it will affect the camera lens through condensation. Condensation when it is caused only for few rounds, the camera will not be damages. But, when the process of condensation continues top exists it will definitely ruin and damage the camera.
Condensation affects the internal functionalities of a camera. When a camera is brought from an environments where it is cold and dry, it will be affected by condensation during the period of summer. This is because it will be hot and this causes sudden change ion the temperature. Thus, it the changes in the environment temperature that causes damages to camera.
import random
computer_choice = random.choice(["rock", "paper", "scissors"])
user_choice = input("rock, paper, or scissors? ")
if computer_choice == user_choice:
print("It's a draw!")
elif user_choice == "rock" and computer_choice == "scissors":
print("You win!")
elif user_choice == "paper" and computer_choice == "rock":
print("You win!")
elif user_choice == "scissors" and computer_choice == "paper":
print("You win!")
else:
print("The computer wins!")
I wrote my code in python 3.8. I hope this helps.