I believe it would be "Use the context to find a synonym for terminating." (Also next time try posting in the English section :) )
C. It's honestly up to the user, upload so others can use it or make it so its copyrighted and make some cash :P
Is this a true or fales question
I hope this helps but cars, phones and computers.
Answer:
The output is: Your cost is 100
Explanation:
Given
The above code snippet
and

Required
Determine the output of the code
if cost < 70 or cost > 150
The above condition checks if cost is less than 70 or cost is greater than 150
This condition is false because 100 is neither less than 70 nor is it greater than 150
So, the else statement will be executed.
discount = cost
Which means
discount = 100
So, the print instruction will print: Your cost is 100