exam questions

Exam PCEP-30-02 All Questions

View all questions & answers for the PCEP-30-02 exam

Exam PCEP-30-02 topic 1 question 15 discussion

Actual exam question from Python Institute's PCEP-30-02
Question #: 15
Topic #: 1
[All PCEP-30-02 Questions]

What is the output of the following code?

  • A. [1, 1, 1]
  • B. [3, -1, 1]
  • C. [3, 1, 1]
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
hovnival
1 month, 2 weeks ago
Selected Answer: C
Let's analyze the code step by step: Initialization of the list: my_list = [3, 1, -1] At this point, my_list is [3, 1, -1]. Assignment operation: my_list[-1] = my_list[-2] Here: my_list[-1] refers to the last element of the list (-1). my_list[-2] refers to the second-to-last element of the list (1). The operation assigns the value of my_list[-2] (which is 1) to my_list[-1]. After this, the list becomes [3, 1, 1]. Print the list: print(my_list) The output is [3, 1, 1]. Final Output: [3, 1, 1]
upvoted 2 times
...
consultsk
5 months, 2 weeks ago
Selected Answer: C
The code performs the following operations: my_list = [3, 1, -1] initializes a list with the elements [3, 1, -1]. my_list[-1] = my_list[-2] assigns the value of the second last element in the list (my_list[-2]) to the last element (my_list[-1]). Since my_list[-2] is 1, the list becomes [3, 1, 1]. print(my_list) prints the updated list. The output will be: [3,1,1]
upvoted 1 times
...
christostz03
5 months, 2 weeks ago
c is the correct answer
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago