Answer:
Code and Commands have similar programs coding has only one thing to do or done but commands can be told anytime by an input device.
Explanation:
hope this helps.
a+b+c+d= perimeter of a rectangle
Answer:
def main():
principal = float(input("Enter the amount of principal amount to be deposited: "))
rate = float(input("Enter annual interest rate paid by the account: "))
num = int(input("Enter the number of times per year that the interest is compunded: "))
years = float(input("Enter the number of years the account will be left to earn interest: "))
amount = principal*(1+(rate*.01)/num)**(num*years)
print("The amount of money will be in the account after ", years, "years:", round(amount,2))
main()
Explanation:
- Calculating the balance of the account after a specified number of years with the help of the formula:
- amount = principal*(1+(rate*.01)/num)**(num*years)
Explanation:
Software is a set of programs, which is designed to perform a well-defined function. A program is a sequence of instructions written to solve a particular problem. There are two types of software − System Software. Application Software.
Answer:
C) Highly portable
Explanation:
This means they can run on any computer or platform that supports Java without the need for recompillation.
This idea is popularly called WORA that is Write Once Run Anywhere.
Software Applications written in Java are compiled to bytcode (.class) which are intended to run on the Java Virtual Machine (JVM) irrespective of the architecture of the computer or device.