Computer Science, asked by wheelleg1295, 1 month ago

Which of the following function header is correct?
a. def cal_si(p=100, r, t=2)
b. def cal_si(p=100, r=8, t)
c. def cal_si(p, r=8, t)
d. def cal_si(p, r=8, t=2)​

Answers

Answered by divyatripathi2005
2

Answer:

def cal_si(p=100,r=8,t)

Answered by brillomban05
1

Answer:

B.

Explanation:

def cal_si(p=100, r=8, t?

Similar questions