plz solve this as soon as possible
Attachments:
Answers
Answered by
10
Answer:
(1010)square(10)square
102010000
[SLC 2065 S]
DECLARE FUNCTION Interest (p,t,r)
✦7.(b)
CLS
LET p = 30
LET t = 40
LET r = 6
LET d = Interest (p, t, r)
PRINT “The simple interest will be”; d
END
FUNCTION Interest (p, t, r)
answer= (p*t*r) /100
Interest=answer
END FUNCTION
Output:
The simple interest will be 72
[SLC 2072]
DECLARE FUNCTION Interest (p,t,r)
CLS
LET p = 100
LET t = 2
LET r = 5
LET d = Interest (p, t, r)
PRINT “The simple interest =” ; d
END
FUNCTION Interest (p, t, r)
ans= (p*t*r) /100
Interest=ans
END FUNCTION
Output:
The simple interest = 10
Answered by
0
Answer:
your answer is in the attachment
Attachments:
Similar questions