exam questions

Exam PCEP-30-02 All Questions

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

Exam PCEP-30-02 topic 7 question 53 discussion

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

What is the expected output of the following snippet?

  • A. P Y T H O N
  • B. Python
  • C. The code is erroneous.
  • D. PYTHON
  • E. python
  • F. P y t h o n
Show Suggested Answer Hide Answer
Suggested Answer: E 🗳️

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
4ba36e7
1 month, 3 weeks ago
Selected Answer: E
s = 'python' → a string, immutable in Python. len(s) = 6 → so range(len(s)) gives [0, 1, 2, 3, 4, 5]. Inside the loop i = s[i].upper() s[i] → gets a character from the string, like 'p', 'y', etc. s[i].upper() → converts that character to uppercase. But then, it assigns it to the loop variable i, not back into the string s. So this line does not change s — it just temporarily reassigns i to a string value (like 'P'), but that’s discarded in the next iteration. s was never modified, because strings are immutable and you didn’t reassign s itself. E. python
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 ...