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 63 discussion

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

What is the expected output of the following code?

  • A. The code is erroneous.
  • B. 2
  • C. 1
  • D. 0
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

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, 1 week ago
Selected Answer: A
The code provided will result in an IndexError. Let's break it down step by step to understand why: data = [[0, 1, 2, 3] for i in range(2)] print(data[2][0]) The list comprehension [[0, 1, 2, 3] for i in range(2)] generates a list of lists. The range(2) means that the outer list will have 2 elements, each of which is the list [0, 1, 2, 3]. So, data will be: data = [ [0, 1, 2, 3], [0, 1, 2, 3] ] The print(data[2][0]) statement attempts to access the element at index 2 of the data list. However, since data only has indices 0 and 1 (it has only 2 sublists), trying to access data[2] will raise an IndexError. So, the expected output when you run the code will be: IndexError: list index out of range
upvoted 1 times
...
megan_mai
5 months, 1 week ago
Selected Answer: A
data = [[0, 1, 2, 3], [0, 1, 2, 3]] calling data[2][0] will be out of range >> IndexError: list index out of range >>> The answer is A
upvoted 2 times
...
christostz03
5 months, 2 weeks ago
a 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