Consider the following function. Determine (1) which values of i and j the function will use, and then (2) what the output will be. def change(i = 1,j = 2): i-i+j j = j + 1 print(i, j) change(j - 1, i = 2) O ( 1) i = 2,j = 1 (2) 32 O ( 1) i = 1, j = 2 (2) 33 O (1) i = 2, j = 1 (2) 33 O (1) i = 1, j = 2 (2) 32

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section5.5: A Closer Look: Loop Programming Techniques
Problem 12E: (Program) Write a program that tests the effectiveness of the rand() library function. Start by...
icon
Related questions
Question

Python

Consider the following function. Determine (1) which values ofi and j the function will use, and then (2) what the output will be.
def change (i = 1, j = 2):
i = i + j
j = j + 1
print(i, j)
change (j = 1, i = 2)
(1) i = 2, j = 1
(2) 32
O (1) i = 1, j = 2
(2) 33
O (1) i = 2, j= 1
(2) 33
O (1) i = 1, j = 2
(2) 32
Transcribed Image Text:Consider the following function. Determine (1) which values ofi and j the function will use, and then (2) what the output will be. def change (i = 1, j = 2): i = i + j j = j + 1 print(i, j) change (j = 1, i = 2) (1) i = 2, j = 1 (2) 32 O (1) i = 1, j = 2 (2) 33 O (1) i = 2, j= 1 (2) 33 O (1) i = 1, j = 2 (2) 32
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr