Answer:
3 will be assigned to a
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:
[tex]a = 3[/tex]
[tex]b = 2[/tex]
[tex]c = 1[/tex]