Correct answer is : B
In the expression students2 = students1 , we create a new name students2 and refer to the origional students1. This is known as shared reference. So any in place change like students2[0] = 'Alec' , will also change the value of students1[0].
In the expression like students3 = students1[:] , we are creating a copy of students1 , so any inplace change will not affect the students1
Therefore in the loop while iterating through all the 3 list, we will encouter 'Alec' 2 times for students1 and students2 and 'Steve' only once.
The result will be 1+1+5 = 7
Comment here: