InterviewSolution
Saved Bookmarks
| 1. |
*PYTHON PROGRAMMING LANGUAGE*I WOULD EXPECT RELEVANT ANSWER NOT LIKE "plzz wait i will give your answer in a moment bcuz I have seen that happen a lotIRRELEVANCE WILL BE REPORTEDPLZZZZZZ ASAP FOR BRAINLIESTQ1. You have written an exam for a total score of 100 and if your score is above 60 then you will be considered as PASS in the exam.Q2. Enter the weight of the suitcase in float. Check whether the weight is greater than 25 kg then print - There is a Rs. 250 charge for luggage that heavy.Q3. Enter temperature(in Celsius) in float. Check whether the temperature is more than 50 then print – It is unbearably hot weather.Q4. Enter a (int) number. Check whether the number is even or odd. (use % for remainder and comparison Equal to operator == |
|
Answer» 1) mark = int(input()) if mark > 60: print("PASS") else: print("FAIL") 2) weight = float(input()) if weight > 25: print("There is a Rs. 250 charge for luggage that heavy.")
3) temp = float(input()) if temp > 50: print("It is unbearably hot weather.") if num != 0: if num%2 == 0: print(num, " is Even") else: print(num, " is ODD") else: print(num, " is Even") Please Thank Me Please Thank MEAND Mark this as Brainliest |
|