InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following is the calling statement? * def calculator(a,b) calculator(30,40): calculator(30) |
|
Answer» 3rdand 2ndExplanation:this is so beacuse the FIRST one is a FUNCTION callthe SECOND one is the FILLING of parameters in it and the second one also. so 2 and 3 are st. and 1is not |
|