Biology, asked by saswatisingh793, 2 months ago

Algebraic Expression
QBasic Equivalent
SI = P.RT
100
S = A + B + C
2
A=P.[1+R/100]"
12.b.h
A = nir?​

Answers

Answered by sncutyno1
2

Answer:

Algebraic Expression

QBasic Equivalent

SI = P.RT

100

S = A + B + C

2

A=P.[1+R/100]"

12.b.h

A = nir?

Answered by barbiedoll275
1

Answer:

PRINT "The Amound for "; T; " Years at the rate of "; R; "% per annum is "; A; " and Compound Interest is "; CI

Explanation:

CLS

PRINT TAB(100); "Compound Interest Finder by Md Athar Sharif"

INPUT "Principal :"; P

INPUT "Rate of Interest :"; R

INPUT "Time :"; T

A = P * (1 + (R / 100)) ^ T

CI = A - P

Similar questions