P = _____(input( “enter money lent”) R = float(input(“enter rate of interest”)) T = float(input(“enter time in years”)) SI = ________ / 100
Amount_payable = P + ____ print(“amount payable is “, _________)
# statement 1
# statement 2 #statement 3 #statement 4
11. Fill statement 1 to convert the input data to float type.
a. Int() b. str() c. float() d. no need of conversion. 12. Fill statement 2 to complete the simple interest formula.
a. Ptr b.P*R*T c.p.r.t d.PRT
13. Fill statement 3 to add simple interest that is calculated in the program.
a. P b.SI c.P*T*R d.R
14. Fill statement 4 to print the total amount payable to the output.
a. Amount b . amount payable c. amount_payable d. SI
Answers
Answered by
0
Answer:
11) c)float ()
12) b) P*R*T
13) b) SI
14) c) amount_payable
Similar questions