This question tests your understanding of passing objects as…
This question tests your understanding of passing objects as arguments into functions. Recall that when you create the movie_obj, the title is “Inception”. Your friend just called the following function. (The Movie class is defined in the question above.) def update_title(movie, new_title): movie.title = new_titlemovie_obj = Movie(“Inception”, “Christopher Nolan”, 2010)update_title(movie_obj, “Interstellar”)print(movie_obj.title)