Subject COMPUTER
Chapter QBASIC QUESTION : (Input principal, rate of interest and time. Now calculate simple interest)
Answers
Answered by
0
Answer:
Networking and Telecommunication, Internet and Its Services, Computer Security, Computer Virus, Multimedia and Its Application, Cyber Law and Computer Ethics, Number System, Database Management System (MS Access), Modular Programming, Sequential File Handling, C Programming Basics
Explanation:
Mark as brainlist
Answered by
0
Answer:
#If in python then:
principal = int(input("Enter the principal amount:"))
rate = int(input("Enter the rate of interest:"))
time = int(input("Enter the time period :"))
Simpleinterest = (principal*rate*time)/100
print("Simple interest : ", Simpleinterest)
Hope it helps
Similar questions