MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following code? def change(i = 1, j = 2): i = i + j j = j + 1 print(i, j) change(j = 1, i = 2) |
| A. | An exception is thrown because of conflicting values |
| B. | 1 2 |
| C. | 3 3 |
| D. | 3 2 |
| Answer» E. | |