Computer Science, asked by kurubakhamal2906, 4 months ago

Name the constraints(4) which can be added at both the levels.(table and column).​

Answers

Answered by parthu2011
0

Answer:

in python3

# Python3 program to find compound  

# interest for given values.  

def compound_interest(principle, rate, time):  

# Calculates compound interest  

CI = principle * (pow((1 + rate / 100), time))  

print("Compound interest is", CI)  

# Driver Code  

compound_interest(10000, 10.25, 5)  

Output:

Compound interest is 16288.9

Explanation:

if you are pleased with answer in turn

please subscribe my youtube chanel(Ramakrishna Nallangari youtube channel) for my effort

search for nallangari in google and find ramakrishna nallnagari and then click it and subscribe

Similar questions