Saved Bookmarks
| 1. |
Write a program which accepts Principal amount and time and then calculate simple interest as per the following specifications: If Principal is greater than or more than Rs. 10000/-, then rate of interest is 6% otherwise it is 5%. |
|
Answer» ong>Answer:P> if it is a python programme then, Explanation: P=int(INPUT("Please enter principle AMOUNT")) T=int(input("Please enter TIME")) r=0 if P<10000: r=5 else: r=6 SI=(P*r*T)/100 print("Simple INTEREST is : ",SI) |
|