InterviewSolution
 Saved Bookmarks
    				| 1. | 
                                    22)Show the output of following code. def cube(n):cn = n*n*nreturn cnx=10y = cube(x)print (y) | 
                            
| Answer» EXACT OUTPUT will be : 1000Explanation:You can SEE Output | |