Answer:
3 will be assigned to a
Step-by-step explanation:
Given
Function definition: def my_function(a, b, c)
Required
What is the value of a if the function is called as my_function(3, 2, 1)
First, we need to check if the function is rightly called.
myfunction is defined with three parameters a, b and c
myfunction is called with three arguments 3, 2 and 1
When called, the arguments will be assigned to each parameter in the order which they were declared.
This implies that:
![a = 3](https://img.qammunity.org/2021/formulas/mathematics/middle-school/1p00rlgluv0w23usrvpo79aj8z3p67ayca.png)
![b = 2](https://img.qammunity.org/2021/formulas/mathematics/high-school/bgf9sdib5x7y3vok71cz1eqn1s9ykkvax7.png)
![c = 1](https://img.qammunity.org/2021/formulas/mathematics/middle-school/wz0ivx0sdy2vds9usabel03cnd55w624j4.png)